diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 2b6d556117..4c5dd76940 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -19,7 +19,7 @@ /Resources/engineCommandPerms.yml @moonheart08 @Chief-Engineer /Resources/clientCommandPerms.yml @moonheart08 @Chief-Engineer -/Resources/Prototypes/Maps/ @Emisse +/Resources/Prototypes/Maps/** @Emisse /Resources/Prototypes/Body/ @DrSmugleaf # suffering /Resources/Prototypes/Entities/Mobs/Player/ @DrSmugleaf diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs index f0b7ffbe11..81c9a409a3 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs @@ -23,6 +23,7 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow { private readonly IEntityManager _entManager; private readonly SpriteSystem _spriteSystem; + private readonly SharedNavMapSystem _navMapSystem; private EntityUid? _owner; private NetEntity? _trackedEntity; @@ -42,19 +43,32 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow private const float SilencingDuration = 2.5f; + // Colors + private Color _wallColor = new Color(64, 64, 64); + private Color _tileColor = new Color(28, 28, 28); + private Color _monitorBlipColor = Color.Cyan; + private Color _untrackedEntColor = Color.DimGray; + private Color _regionBaseColor = new Color(154, 154, 154); + private Color _inactiveColor = StyleNano.DisabledFore; + private Color _statusTextColor = StyleNano.GoodGreenFore; + private Color _goodColor = Color.LimeGreen; + private Color _warningColor = new Color(255, 182, 72); + private Color _dangerColor = new Color(255, 67, 67); + public AtmosAlertsComputerWindow(AtmosAlertsComputerBoundUserInterface userInterface, EntityUid? owner) { RobustXamlLoader.Load(this); _entManager = IoCManager.Resolve(); _spriteSystem = _entManager.System(); + _navMapSystem = _entManager.System(); // Pass the owner to nav map _owner = owner; NavMap.Owner = _owner; // Set nav map colors - NavMap.WallColor = new Color(64, 64, 64); - NavMap.TileColor = Color.DimGray * NavMap.WallColor; + NavMap.WallColor = _wallColor; + NavMap.TileColor = _tileColor; // Set nav map grid uid var stationName = Loc.GetString("atmos-alerts-window-unknown-location"); @@ -179,6 +193,9 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow // Add tracked entities to the nav map foreach (var device in console.AtmosDevices) { + if (!device.NetEntity.Valid) + continue; + if (!NavMap.Visible) continue; @@ -209,7 +226,7 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow if (consoleCoords != null && consoleUid != null) { var texture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); - var blip = new NavMapBlip(consoleCoords.Value, texture, Color.Cyan, true, false); + var blip = new NavMapBlip(consoleCoords.Value, texture, _monitorBlipColor, true, false); NavMap.TrackedEntities[consoleUid.Value] = blip; } @@ -258,7 +275,7 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow VerticalAlignment = VAlignment.Center, }; - label.SetMarkup(Loc.GetString("atmos-alerts-window-no-active-alerts", ("color", StyleNano.GoodGreenFore.ToHexNoAlpha()))); + label.SetMarkup(Loc.GetString("atmos-alerts-window-no-active-alerts", ("color", _statusTextColor.ToHexNoAlpha()))); AlertsTable.AddChild(label); } @@ -270,6 +287,34 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow else MasterTabContainer.SetTabTitle(0, Loc.GetString("atmos-alerts-window-tab-alerts", ("value", activeAlarmCount))); + // Update sensor regions + NavMap.RegionOverlays.Clear(); + var prioritizedRegionOverlays = new Dictionary(); + + if (_owner != null && + _entManager.TryGetComponent(_owner, out var xform) && + _entManager.TryGetComponent(xform.GridUid, out var navMap)) + { + var regionOverlays = _navMapSystem.GetNavMapRegionOverlays(_owner.Value, navMap, AtmosAlertsComputerUiKey.Key); + + foreach (var (regionOwner, regionOverlay) in regionOverlays) + { + var alarmState = GetAlarmState(regionOwner); + + if (!TryGetSensorRegionColor(regionOwner, alarmState, out var regionColor)) + continue; + + regionOverlay.Color = regionColor; + + var priority = (_trackedEntity == regionOwner) ? 999 : (int)alarmState; + prioritizedRegionOverlays.Add(regionOverlay, priority); + } + + // Sort overlays according to their priority + var sortedOverlays = prioritizedRegionOverlays.OrderBy(x => x.Value).Select(x => x.Key).ToList(); + NavMap.RegionOverlays = sortedOverlays; + } + // Auto-scroll re-enable if (_autoScrollAwaitsUpdate) { @@ -290,7 +335,7 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow var coords = _entManager.GetCoordinates(metaData.NetCoordinates); if (_trackedEntity != null && _trackedEntity != metaData.NetEntity) - color *= Color.DimGray; + color *= _untrackedEntColor; var selectable = true; var blip = new NavMapBlip(coords, _spriteSystem.Frame0(texture), color, _trackedEntity == metaData.NetEntity, selectable); @@ -298,6 +343,24 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow NavMap.TrackedEntities[metaData.NetEntity] = blip; } + private bool TryGetSensorRegionColor(NetEntity regionOwner, AtmosAlarmType alarmState, out Color color) + { + color = Color.White; + + var blip = GetBlipTexture(alarmState); + + if (blip == null) + return false; + + // Color the region based on alarm state and entity tracking + color = blip.Value.Item2 * _regionBaseColor; + + if (_trackedEntity != null && _trackedEntity != regionOwner) + color *= _untrackedEntColor; + + return true; + } + private void UpdateUIEntry(AtmosAlertsComputerEntry entry, int index, Control table, AtmosAlertsComputerComponent console, AtmosAlertsFocusDeviceData? focusData = null) { // Make new UI entry if required @@ -534,13 +597,13 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow switch (alarmState) { case AtmosAlarmType.Invalid: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), StyleNano.DisabledFore); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), _inactiveColor); break; case AtmosAlarmType.Normal: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), Color.LimeGreen); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), _goodColor); break; case AtmosAlarmType.Warning: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_triangle.png")), new Color(255, 182, 72)); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_triangle.png")), _warningColor); break; case AtmosAlarmType.Danger: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_square.png")), new Color(255, 67, 67)); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_square.png")), _dangerColor); break; } return output; diff --git a/Content.Client/Entry/EntryPoint.cs b/Content.Client/Entry/EntryPoint.cs index 3b52022407..09c2b8bda5 100644 --- a/Content.Client/Entry/EntryPoint.cs +++ b/Content.Client/Entry/EntryPoint.cs @@ -4,6 +4,7 @@ using Content.Client.Chat.Managers; using Content.Client.DebugMon; using Content.Client.Eui; using Content.Client.Fullscreen; +using Content.Client.GameTicking.Managers; using Content.Client.GhostKick; using Content.Client.Guidebook; using Content.Client.Input; @@ -71,6 +72,7 @@ namespace Content.Client.Entry [Dependency] private readonly IReplayLoadManager _replayLoad = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly DebugMonitorManager _debugMonitorManager = default!; + [Dependency] private readonly TitleWindowManager _titleWindowManager = default!; public override void Init() { @@ -140,6 +142,12 @@ namespace Content.Client.Entry _configManager.SetCVar("interface.resolutionAutoScaleMinimum", 0.5f); } + public override void Shutdown() + { + base.Shutdown(); + _titleWindowManager.Shutdown(); + } + public override void PostInit() { base.PostInit(); @@ -160,6 +168,7 @@ namespace Content.Client.Entry _userInterfaceManager.SetDefaultTheme(_configManager.GetCVar(CCVars.UIDefaultInterfaceTheme)); _userInterfaceManager.SetActiveTheme(_configManager.GetCVar(CVars.InterfaceTheme)); _documentParsingManager.Initialize(); + _titleWindowManager.Initialize(); _baseClient.RunLevelChanged += (_, args) => { diff --git a/Content.Client/GameTicking/Managers/TitleWindowManager.cs b/Content.Client/GameTicking/Managers/TitleWindowManager.cs new file mode 100644 index 0000000000..18ce16f634 --- /dev/null +++ b/Content.Client/GameTicking/Managers/TitleWindowManager.cs @@ -0,0 +1,62 @@ +using Content.Shared.CCVar; +using Robust.Client; +using Robust.Client.Graphics; +using Robust.Shared; +using Robust.Shared.Configuration; + +namespace Content.Client.GameTicking.Managers; + +public sealed class TitleWindowManager +{ + [Dependency] private readonly IBaseClient _client = default!; + [Dependency] private readonly IClyde _clyde = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IGameController _gameController = default!; + + public void Initialize() + { + _cfg.OnValueChanged(CVars.GameHostName, OnHostnameChange, true); + _cfg.OnValueChanged(CCVars.GameHostnameInTitlebar, OnHostnameTitleChange, true); + + _client.RunLevelChanged += OnRunLevelChangedChange; + } + + public void Shutdown() + { + _cfg.UnsubValueChanged(CVars.GameHostName, OnHostnameChange); + _cfg.UnsubValueChanged(CCVars.GameHostnameInTitlebar, OnHostnameTitleChange); + } + + private void OnHostnameChange(string hostname) + { + var defaultWindowTitle = _gameController.GameTitle(); + + // Since the game assumes the server name is MyServer and that GameHostnameInTitlebar CCVar is true by default + // Lets just... not show anything. This also is used to revert back to just the game title on disconnect. + if (_client.RunLevel == ClientRunLevel.Initialize) + { + _clyde.SetWindowTitle(defaultWindowTitle); + return; + } + + if (_cfg.GetCVar(CCVars.GameHostnameInTitlebar)) + // If you really dislike the dash I guess change it here + _clyde.SetWindowTitle(hostname + " - " + defaultWindowTitle); + else + _clyde.SetWindowTitle(defaultWindowTitle); + } + + // Clients by default assume game.hostname_in_titlebar is true + // but we need to clear it as soon as we join and actually receive the servers preference on this. + // This will ensure we rerun OnHostnameChange and set the correct title bar name. + private void OnHostnameTitleChange(bool colonthree) + { + OnHostnameChange(_cfg.GetCVar(CVars.GameHostName)); + } + + // This is just used we can rerun the hostname change function when we disconnect to revert back to just the games title. + private void OnRunLevelChangedChange(object? sender, RunLevelChangedEventArgs runLevelChangedEventArgs) + { + OnHostnameChange(_cfg.GetCVar(CVars.GameHostName)); + } +} diff --git a/Content.Client/Hands/Systems/HandsSystem.cs b/Content.Client/Hands/Systems/HandsSystem.cs index ffa6dfd29d..68800a2afe 100644 --- a/Content.Client/Hands/Systems/HandsSystem.cs +++ b/Content.Client/Hands/Systems/HandsSystem.cs @@ -130,9 +130,9 @@ namespace Content.Client.Hands.Systems OnPlayerHandsAdded?.Invoke(hands); } - public override void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = true, HandsComponent? hands = null) + public override void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = true, HandsComponent? hands = null, bool log = true) { - base.DoDrop(uid, hand, doDropInteraction, hands); + base.DoDrop(uid, hand, doDropInteraction, hands, log); if (TryComp(hand.HeldEntity, out SpriteComponent? sprite)) sprite.RenderOrder = EntityManager.CurrentTick.Value; diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs index aff01800f9..632ad8de4a 100644 --- a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs @@ -1,3 +1,4 @@ +using Content.Shared.Localizations; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; @@ -16,19 +17,10 @@ public sealed partial class PlaytimeStatsEntry : ContainerButton RoleLabel.Text = role; Playtime = playtime; // store the TimeSpan value directly - PlaytimeLabel.Text = ConvertTimeSpanToHoursMinutes(playtime); // convert to string for display + PlaytimeLabel.Text = ContentLocalizationManager.FormatPlaytime(playtime); // convert to string for display BackgroundColorPanel.PanelOverride = styleBox; } - private static string ConvertTimeSpanToHoursMinutes(TimeSpan timeSpan) - { - var hours = (int)timeSpan.TotalHours; - var minutes = timeSpan.Minutes; - - var formattedTimeLoc = Loc.GetString("ui-playtime-time-format", ("hours", hours), ("minutes", minutes)); - return formattedTimeLoc; - } - public void UpdateShading(StyleBoxFlat styleBox) { BackgroundColorPanel.PanelOverride = styleBox; diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs index 3b54bf82da..98241b2cca 100644 --- a/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs @@ -104,8 +104,7 @@ public sealed partial class PlaytimeStatsWindow : FancyWindow { var overallPlaytime = _jobRequirementsManager.FetchOverallPlaytime(); - var formattedPlaytime = ConvertTimeSpanToHoursMinutes(overallPlaytime); - OverallPlaytimeLabel.Text = Loc.GetString("ui-playtime-overall", ("time", formattedPlaytime)); + OverallPlaytimeLabel.Text = Loc.GetString("ui-playtime-overall", ("time", overallPlaytime)); var rolePlaytimes = _jobRequirementsManager.FetchPlaytimeByRoles(); @@ -134,13 +133,4 @@ public sealed partial class PlaytimeStatsWindow : FancyWindow _sawmill.Error($"The provided playtime string '{playtimeString}' is not in the correct format."); } } - - private static string ConvertTimeSpanToHoursMinutes(TimeSpan timeSpan) - { - var hours = (int) timeSpan.TotalHours; - var minutes = timeSpan.Minutes; - - var formattedTimeLoc = Loc.GetString("ui-playtime-time-format", ("hours", hours), ("minutes", minutes)); - return formattedTimeLoc; - } } diff --git a/Content.Client/IoC/ClientContentIoC.cs b/Content.Client/IoC/ClientContentIoC.cs index e643552f70..370188e3c6 100644 --- a/Content.Client/IoC/ClientContentIoC.cs +++ b/Content.Client/IoC/ClientContentIoC.cs @@ -5,6 +5,7 @@ using Content.Client.Clickable; using Content.Client.DebugMon; using Content.Client.Eui; using Content.Client.Fullscreen; +using Content.Client.GameTicking.Managers; using Content.Client.GhostKick; using Content.Client.Guidebook; using Content.Client.Launcher; @@ -57,6 +58,7 @@ namespace Content.Client.IoC collection.Register(); collection.Register(); collection.Register(); + collection.Register(); } } } diff --git a/Content.Client/Pinpointer/NavMapSystem.Regions.cs b/Content.Client/Pinpointer/NavMapSystem.Regions.cs new file mode 100644 index 0000000000..4cc775418e --- /dev/null +++ b/Content.Client/Pinpointer/NavMapSystem.Regions.cs @@ -0,0 +1,303 @@ +using Content.Shared.Atmos; +using Content.Shared.Pinpointer; +using System.Linq; + +namespace Content.Client.Pinpointer; + +public sealed partial class NavMapSystem +{ + private (AtmosDirection, Vector2i, AtmosDirection)[] _regionPropagationTable = + { + (AtmosDirection.East, new Vector2i(1, 0), AtmosDirection.West), + (AtmosDirection.West, new Vector2i(-1, 0), AtmosDirection.East), + (AtmosDirection.North, new Vector2i(0, 1), AtmosDirection.South), + (AtmosDirection.South, new Vector2i(0, -1), AtmosDirection.North), + }; + + public override void Update(float frameTime) + { + // To prevent compute spikes, only one region is flood filled per frame + var query = AllEntityQuery(); + + while (query.MoveNext(out var ent, out var entNavMapRegions)) + FloodFillNextEnqueuedRegion(ent, entNavMapRegions); + } + + private void FloodFillNextEnqueuedRegion(EntityUid uid, NavMapComponent component) + { + if (!component.QueuedRegionsToFlood.Any()) + return; + + var regionOwner = component.QueuedRegionsToFlood.Dequeue(); + + // If the region is no longer valid, flood the next one in the queue + if (!component.RegionProperties.TryGetValue(regionOwner, out var regionProperties) || + !regionProperties.Seeds.Any()) + { + FloodFillNextEnqueuedRegion(uid, component); + return; + } + + // Flood fill the region, using the region seeds as starting points + var (floodedTiles, floodedChunks) = FloodFillRegion(uid, component, regionProperties); + + // Combine the flooded tiles into larger rectangles + var gridCoords = GetMergedRegionTiles(floodedTiles); + + // Create and assign the new region overlay + var regionOverlay = new NavMapRegionOverlay(regionProperties.UiKey, gridCoords) + { + Color = regionProperties.Color + }; + + component.RegionOverlays[regionOwner] = regionOverlay; + + // To reduce unnecessary future flood fills, we will track which chunks have been flooded by a region owner + + // First remove an old assignments + if (component.RegionOwnerToChunkTable.TryGetValue(regionOwner, out var oldChunks)) + { + foreach (var chunk in oldChunks) + { + if (component.ChunkToRegionOwnerTable.TryGetValue(chunk, out var oldOwners)) + { + oldOwners.Remove(regionOwner); + component.ChunkToRegionOwnerTable[chunk] = oldOwners; + } + } + } + + // Now update with the new assignments + component.RegionOwnerToChunkTable[regionOwner] = floodedChunks; + + foreach (var chunk in floodedChunks) + { + if (!component.ChunkToRegionOwnerTable.TryGetValue(chunk, out var owners)) + owners = new(); + + owners.Add(regionOwner); + component.ChunkToRegionOwnerTable[chunk] = owners; + } + } + + private (HashSet, HashSet) FloodFillRegion(EntityUid uid, NavMapComponent component, NavMapRegionProperties regionProperties) + { + if (!regionProperties.Seeds.Any()) + return (new(), new()); + + var visitedChunks = new HashSet(); + var visitedTiles = new HashSet(); + var tilesToVisit = new Stack(); + + foreach (var regionSeed in regionProperties.Seeds) + { + tilesToVisit.Push(regionSeed); + + while (tilesToVisit.Count > 0) + { + // If the max region area is hit, exit + if (visitedTiles.Count > regionProperties.MaxArea) + return (new(), new()); + + // Pop the top tile from the stack + var current = tilesToVisit.Pop(); + + // If the current tile position has already been visited, + // or is too far away from the seed, continue + if ((regionSeed - current).Length > regionProperties.MaxRadius) + continue; + + if (visitedTiles.Contains(current)) + continue; + + // Determine the tile's chunk index + var chunkOrigin = SharedMapSystem.GetChunkIndices(current, ChunkSize); + var relative = SharedMapSystem.GetChunkRelative(current, ChunkSize); + var idx = GetTileIndex(relative); + + // Extract the tile data + if (!component.Chunks.TryGetValue(chunkOrigin, out var chunk)) + continue; + + var flag = chunk.TileData[idx]; + + // If the current tile is entirely occupied, continue + if ((FloorMask & flag) == 0) + continue; + + if ((WallMask & flag) == WallMask) + continue; + + if ((AirlockMask & flag) == AirlockMask) + continue; + + // Otherwise the tile can be added to this region + visitedTiles.Add(current); + visitedChunks.Add(chunkOrigin); + + // Determine if we can propagate the region into its cardinally adjacent neighbors + // To propagate to a neighbor, movement into the neighbors closest edge must not be + // blocked, and vice versa + + foreach (var (direction, tileOffset, reverseDirection) in _regionPropagationTable) + { + if (!RegionCanPropagateInDirection(chunk, current, direction)) + continue; + + var neighbor = current + tileOffset; + var neighborOrigin = SharedMapSystem.GetChunkIndices(neighbor, ChunkSize); + + if (!component.Chunks.TryGetValue(neighborOrigin, out var neighborChunk)) + continue; + + visitedChunks.Add(neighborOrigin); + + if (!RegionCanPropagateInDirection(neighborChunk, neighbor, reverseDirection)) + continue; + + tilesToVisit.Push(neighbor); + } + } + } + + return (visitedTiles, visitedChunks); + } + + private bool RegionCanPropagateInDirection(NavMapChunk chunk, Vector2i tile, AtmosDirection direction) + { + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var idx = GetTileIndex(relative); + var flag = chunk.TileData[idx]; + + if ((FloorMask & flag) == 0) + return false; + + var directionMask = 1 << (int)direction; + var wallMask = (int)direction << (int)NavMapChunkType.Wall; + var airlockMask = (int)direction << (int)NavMapChunkType.Airlock; + + if ((wallMask & flag) > 0) + return false; + + if ((airlockMask & flag) > 0) + return false; + + return true; + } + + private List<(Vector2i, Vector2i)> GetMergedRegionTiles(HashSet tiles) + { + if (!tiles.Any()) + return new(); + + var x = tiles.Select(t => t.X); + var minX = x.Min(); + var maxX = x.Max(); + + var y = tiles.Select(t => t.Y); + var minY = y.Min(); + var maxY = y.Max(); + + var matrix = new int[maxX - minX + 1, maxY - minY + 1]; + + foreach (var tile in tiles) + { + var a = tile.X - minX; + var b = tile.Y - minY; + + matrix[a, b] = 1; + } + + return GetMergedRegionTiles(matrix, new Vector2i(minX, minY)); + } + + private List<(Vector2i, Vector2i)> GetMergedRegionTiles(int[,] matrix, Vector2i offset) + { + var output = new List<(Vector2i, Vector2i)>(); + + var rows = matrix.GetLength(0); + var cols = matrix.GetLength(1); + + var dp = new int[rows, cols]; + var coords = (new Vector2i(), new Vector2i()); + var maxArea = 0; + + var count = 0; + + while (!IsArrayEmpty(matrix)) + { + count++; + + if (count > rows * cols) + break; + + // Clear old values + dp = new int[rows, cols]; + coords = (new Vector2i(), new Vector2i()); + maxArea = 0; + + // Initialize the first row of dp + for (int j = 0; j < cols; j++) + { + dp[0, j] = matrix[0, j]; + } + + // Calculate dp values for remaining rows + for (int i = 1; i < rows; i++) + { + for (int j = 0; j < cols; j++) + dp[i, j] = matrix[i, j] == 1 ? dp[i - 1, j] + 1 : 0; + } + + // Find the largest rectangular area seeded for each position in the matrix + for (int i = 0; i < rows; i++) + { + for (int j = 0; j < cols; j++) + { + int minWidth = dp[i, j]; + + for (int k = j; k >= 0; k--) + { + if (dp[i, k] <= 0) + break; + + minWidth = Math.Min(minWidth, dp[i, k]); + var currArea = Math.Max(maxArea, minWidth * (j - k + 1)); + + if (currArea > maxArea) + { + maxArea = currArea; + coords = (new Vector2i(i - minWidth + 1, k), new Vector2i(i, j)); + } + } + } + } + + // Save the recorded rectangle vertices + output.Add((coords.Item1 + offset, coords.Item2 + offset)); + + // Removed the tiles covered by the rectangle from matrix + for (int i = coords.Item1.X; i <= coords.Item2.X; i++) + { + for (int j = coords.Item1.Y; j <= coords.Item2.Y; j++) + matrix[i, j] = 0; + } + } + + return output; + } + + private bool IsArrayEmpty(int[,] matrix) + { + for (int i = 0; i < matrix.GetLength(0); i++) + { + for (int j = 0; j < matrix.GetLength(1); j++) + { + if (matrix[i, j] == 1) + return false; + } + } + + return true; + } +} diff --git a/Content.Client/Pinpointer/NavMapSystem.cs b/Content.Client/Pinpointer/NavMapSystem.cs index 9aeb792a42..47469d4ea7 100644 --- a/Content.Client/Pinpointer/NavMapSystem.cs +++ b/Content.Client/Pinpointer/NavMapSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Shared.Pinpointer; using Robust.Shared.GameStates; @@ -16,6 +17,7 @@ public sealed partial class NavMapSystem : SharedNavMapSystem { Dictionary modifiedChunks; Dictionary beacons; + Dictionary regions; switch (args.Current) { @@ -23,6 +25,8 @@ public sealed partial class NavMapSystem : SharedNavMapSystem { modifiedChunks = delta.ModifiedChunks; beacons = delta.Beacons; + regions = delta.Regions; + foreach (var index in component.Chunks.Keys) { if (!delta.AllChunks!.Contains(index)) @@ -35,6 +39,8 @@ public sealed partial class NavMapSystem : SharedNavMapSystem { modifiedChunks = state.Chunks; beacons = state.Beacons; + regions = state.Regions; + foreach (var index in component.Chunks.Keys) { if (!state.Chunks.ContainsKey(index)) @@ -47,13 +53,54 @@ public sealed partial class NavMapSystem : SharedNavMapSystem return; } + // Update region data and queue new regions for flooding + var prevRegionOwners = component.RegionProperties.Keys.ToList(); + var validRegionOwners = new List(); + + component.RegionProperties.Clear(); + + foreach (var (regionOwner, regionData) in regions) + { + if (!regionData.Seeds.Any()) + continue; + + component.RegionProperties[regionOwner] = regionData; + validRegionOwners.Add(regionOwner); + + if (component.RegionOverlays.ContainsKey(regionOwner)) + continue; + + if (component.QueuedRegionsToFlood.Contains(regionOwner)) + continue; + + component.QueuedRegionsToFlood.Enqueue(regionOwner); + } + + // Remove stale region owners + var regionOwnersToRemove = prevRegionOwners.Except(validRegionOwners); + + foreach (var regionOwnerRemoved in regionOwnersToRemove) + RemoveNavMapRegion(uid, component, regionOwnerRemoved); + + // Modify chunks foreach (var (origin, chunk) in modifiedChunks) { var newChunk = new NavMapChunk(origin); Array.Copy(chunk, newChunk.TileData, chunk.Length); component.Chunks[origin] = newChunk; + + // If the affected chunk intersects one or more regions, re-flood them + if (!component.ChunkToRegionOwnerTable.TryGetValue(origin, out var affectedOwners)) + continue; + + foreach (var affectedOwner in affectedOwners) + { + if (!component.QueuedRegionsToFlood.Contains(affectedOwner)) + component.QueuedRegionsToFlood.Enqueue(affectedOwner); + } } + // Refresh beacons component.Beacons.Clear(); foreach (var (nuid, beacon) in beacons) { diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 413b41c36a..90c2680c4a 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -48,6 +48,7 @@ public partial class NavMapControl : MapGridControl public List<(Vector2, Vector2)> TileLines = new(); public List<(Vector2, Vector2)> TileRects = new(); public List<(Vector2[], Color)> TilePolygons = new(); + public List RegionOverlays = new(); // Default colors public Color WallColor = new(102, 217, 102); @@ -228,7 +229,7 @@ public partial class NavMapControl : MapGridControl { if (!blip.Selectable) continue; - + var currentDistance = (_transformSystem.ToMapCoordinates(blip.Coordinates).Position - worldPosition).Length(); if (closestDistance < currentDistance || currentDistance * MinimapScale > MaxSelectableDistance) @@ -319,6 +320,22 @@ public partial class NavMapControl : MapGridControl } } + // Draw region overlays + if (_grid != null) + { + foreach (var regionOverlay in RegionOverlays) + { + foreach (var gridCoords in regionOverlay.GridCoords) + { + var positionTopLeft = ScalePosition(new Vector2(gridCoords.Item1.X, -gridCoords.Item1.Y) - new Vector2(offset.X, -offset.Y)); + var positionBottomRight = ScalePosition(new Vector2(gridCoords.Item2.X + _grid.TileSize, -gridCoords.Item2.Y - _grid.TileSize) - new Vector2(offset.X, -offset.Y)); + + var box = new UIBox2(positionTopLeft, positionBottomRight); + handle.DrawRect(box, regionOverlay.Color); + } + } + } + // Draw map lines if (TileLines.Any()) { diff --git a/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs b/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs index 6d52c50290..314b59eda9 100644 --- a/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs +++ b/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs @@ -51,6 +51,8 @@ public sealed class JobRequirementsManager : ISharedPlaytimeManager { // Reset on disconnect, just in case. _roles.Clear(); + _jobWhitelists.Clear(); + _roleBans.Clear(); } } @@ -58,9 +60,6 @@ public sealed class JobRequirementsManager : ISharedPlaytimeManager { _sawmill.Debug($"Received roleban info containing {message.Bans.Count} entries."); - if (_roleBans.Equals(message.Bans)) - return; - _roleBans.Clear(); _roleBans.AddRange(message.Bans); Updated?.Invoke(); diff --git a/Content.Client/Power/APC/ApcBoundUserInterface.cs b/Content.Client/Power/APC/ApcBoundUserInterface.cs index a790c5d984..5c4036a915 100644 --- a/Content.Client/Power/APC/ApcBoundUserInterface.cs +++ b/Content.Client/Power/APC/ApcBoundUserInterface.cs @@ -1,8 +1,9 @@ -using Content.Client.Power.APC.UI; +using Content.Client.Power.APC.UI; +using Content.Shared.Access.Systems; using Content.Shared.APC; using JetBrains.Annotations; -using Robust.Client.GameObjects; using Robust.Client.UserInterface; +using Robust.Shared.Player; namespace Content.Client.Power.APC { @@ -22,6 +23,14 @@ namespace Content.Client.Power.APC _menu = this.CreateWindow(); _menu.SetEntity(Owner); _menu.OnBreaker += BreakerPressed; + + var hasAccess = false; + if (PlayerManager.LocalEntity != null) + { + var accessReader = EntMan.System(); + hasAccess = accessReader.IsAllowed((EntityUid)PlayerManager.LocalEntity, Owner); + } + _menu?.SetAccessEnabled(hasAccess); } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/Power/APC/UI/ApcMenu.xaml.cs b/Content.Client/Power/APC/UI/ApcMenu.xaml.cs index 2f61ea63a8..25e885b3c7 100644 --- a/Content.Client/Power/APC/UI/ApcMenu.xaml.cs +++ b/Content.Client/Power/APC/UI/ApcMenu.xaml.cs @@ -1,4 +1,4 @@ -using Robust.Client.AutoGenerated; +using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.XAML; using Robust.Client.GameObjects; using Robust.Shared.IoC; @@ -36,19 +36,9 @@ namespace Content.Client.Power.APC.UI { var castState = (ApcBoundInterfaceState) state; - if (BreakerButton != null) + if (!BreakerButton.Disabled) { - if(castState.HasAccess == false) - { - BreakerButton.Disabled = true; - BreakerButton.ToolTip = Loc.GetString("apc-component-insufficient-access"); - } - else - { - BreakerButton.Disabled = false; - BreakerButton.ToolTip = null; - BreakerButton.Pressed = castState.MainBreaker; - } + BreakerButton.Pressed = castState.MainBreaker; } if (PowerLabel != null) @@ -86,6 +76,20 @@ namespace Content.Client.Power.APC.UI } } + public void SetAccessEnabled(bool hasAccess) + { + if(hasAccess) + { + BreakerButton.Disabled = false; + BreakerButton.ToolTip = null; + } + else + { + BreakerButton.Disabled = true; + BreakerButton.ToolTip = Loc.GetString("apc-component-insufficient-access"); + } + } + private void UpdateChargeBarColor(float charge) { if (ChargeBar == null) diff --git a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml index 913b07a8f6..44b1ff95e7 100644 --- a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml +++ b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml @@ -2,7 +2,8 @@ xmlns="https://spacestation14.io" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls" - xmlns:co="clr-namespace:Content.Client.UserInterface.Controls"> + xmlns:co="clr-namespace:Content.Client.UserInterface.Controls" + MinHeight="210"> diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs index 7604d5f880..26ec75f995 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs @@ -28,6 +28,7 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem [Dependency] private readonly AnimationPlayerSystem _animation = default!; [Dependency] private readonly InputSystem _inputSystem = default!; [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; + [Dependency] private readonly MapSystem _map = default!; private EntityQuery _xformQuery; @@ -109,11 +110,11 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem if (MapManager.TryFindGridAt(mousePos, out var gridUid, out _)) { - coordinates = EntityCoordinates.FromMap(gridUid, mousePos, TransformSystem, EntityManager); + coordinates = TransformSystem.ToCoordinates(gridUid, mousePos); } else { - coordinates = EntityCoordinates.FromMap(MapManager.GetMapEntityId(mousePos.MapId), mousePos, TransformSystem, EntityManager); + coordinates = TransformSystem.ToCoordinates(_map.GetMap(mousePos.MapId), mousePos); } // Heavy attack. diff --git a/Content.IntegrationTests/Pair/TestPair.Helpers.cs b/Content.IntegrationTests/Pair/TestPair.Helpers.cs index 4604cd8296..1b4825cc9c 100644 --- a/Content.IntegrationTests/Pair/TestPair.Helpers.cs +++ b/Content.IntegrationTests/Pair/TestPair.Helpers.cs @@ -107,13 +107,41 @@ public sealed partial class TestPair /// /// Retrieve all entity prototypes that have some component. /// - public List GetPrototypesWithComponent( + public List<(EntityPrototype, T)> GetPrototypesWithComponent( HashSet? ignored = null, bool ignoreAbstract = true, bool ignoreTestPrototypes = true) where T : IComponent { var id = Server.ResolveDependency().GetComponentName(typeof(T)); + var list = new List<(EntityPrototype, T)>(); + foreach (var proto in Server.ProtoMan.EnumeratePrototypes()) + { + if (ignored != null && ignored.Contains(proto.ID)) + continue; + + if (ignoreAbstract && proto.Abstract) + continue; + + if (ignoreTestPrototypes && IsTestPrototype(proto)) + continue; + + if (proto.Components.TryGetComponent(id, out var cmp)) + list.Add((proto, (T)cmp)); + } + + return list; + } + + /// + /// Retrieve all entity prototypes that have some component. + /// + public List GetPrototypesWithComponent(Type type, + HashSet? ignored = null, + bool ignoreAbstract = true, + bool ignoreTestPrototypes = true) + { + var id = Server.ResolveDependency().GetComponentName(type); var list = new List(); foreach (var proto in Server.ProtoMan.EnumeratePrototypes()) { @@ -127,7 +155,7 @@ public sealed partial class TestPair continue; if (proto.Components.ContainsKey(id)) - list.Add(proto); + list.Add((proto)); } return list; diff --git a/Content.IntegrationTests/Tests/Minds/RoleTests.cs b/Content.IntegrationTests/Tests/Minds/RoleTests.cs new file mode 100644 index 0000000000..fcfe1236cf --- /dev/null +++ b/Content.IntegrationTests/Tests/Minds/RoleTests.cs @@ -0,0 +1,95 @@ +using System.Linq; +using Content.Server.Roles; +using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; +using Robust.Shared.GameObjects; +using Robust.Shared.Reflection; + +namespace Content.IntegrationTests.Tests.Minds; + +[TestFixture] +public sealed class RoleTests +{ + /// + /// Check that any prototype with a is properly configured + /// + [Test] + public async Task ValidateRolePrototypes() + { + await using var pair = await PoolManager.GetServerClient(); + + var jobComp = pair.Server.ResolveDependency().GetComponentName(typeof(JobRoleComponent)); + + Assert.Multiple(() => + { + foreach (var (proto, comp) in pair.GetPrototypesWithComponent()) + { + Assert.That(comp.AntagPrototype == null || comp.JobPrototype == null, $"Role {proto.ID} has both a job and antag prototype."); + Assert.That(!comp.ExclusiveAntag || comp.Antag, $"Role {proto.ID} is marked as an exclusive antag, despite not being an antag."); + Assert.That(comp.Antag || comp.AntagPrototype == null, $"Role {proto.ID} has an antag prototype, despite not being an antag."); + + if (comp.JobPrototype != null) + Assert.That(proto.Components.ContainsKey(jobComp), $"Role {proto.ID} is a job, despite not having a job prototype."); + + // It is possible that this is meant to be supported? Though I would assume that it would be for + // admin / prototype uploads, and that pre-defined roles should still check this. + Assert.That(!comp.Antag || comp.AntagPrototype != null , $"Role {proto.ID} is an antag, despite not having a antag prototype."); + } + }); + + await pair.CleanReturnAsync(); + } + + /// + /// Check that any prototype with a also has a properly configured + /// + /// + [Test] + public async Task ValidateJobPrototypes() + { + await using var pair = await PoolManager.GetServerClient(); + + var mindCompId = pair.Server.ResolveDependency().GetComponentName(typeof(MindRoleComponent)); + + Assert.Multiple(() => + { + foreach (var (proto, comp) in pair.GetPrototypesWithComponent()) + { + if (proto.Components.TryGetComponent(mindCompId, out var mindComp)) + Assert.That(((MindRoleComponent)mindComp).JobPrototype, Is.Not.Null); + } + }); + + await pair.CleanReturnAsync(); + } + + /// + /// Check that any prototype with a component that inherits from also has a + /// + /// + [Test] + public async Task ValidateRolesHaveMindRoleComp() + { + await using var pair = await PoolManager.GetServerClient(); + + var refMan = pair.Server.ResolveDependency(); + var mindCompId = pair.Server.ResolveDependency().GetComponentName(typeof(MindRoleComponent)); + + var compTypes = refMan.GetAllChildren(typeof(BaseMindRoleComponent)) + .Append(typeof(RoleBriefingComponent)) + .Where(x => !x.IsAbstract); + + Assert.Multiple(() => + { + foreach (var comp in compTypes) + { + foreach (var proto in pair.GetPrototypesWithComponent(comp)) + { + Assert.That(proto.Components.ContainsKey(mindCompId), $"Role {proto.ID} does not have a {nameof(MindRoleComponent)} despite having a {comp.Name}"); + } + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs b/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs index f8060edb2b..3b2935258a 100644 --- a/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs +++ b/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs @@ -35,15 +35,16 @@ public sealed class StartingGearPrototypeStorageTest { foreach (var gearProto in protos) { - var backpackProto = ((IEquipmentLoadout) gearProto).GetGear("back"); - if (backpackProto == string.Empty) - continue; - - var bag = server.EntMan.SpawnEntity(backpackProto, coords); var ents = new ValueList(); foreach (var (slot, entProtos) in gearProto.Storage) { + ents.Clear(); + var storageProto = ((IEquipmentLoadout)gearProto).GetGear(slot); + if (storageProto == string.Empty) + continue; + + var bag = server.EntMan.SpawnEntity(storageProto, coords); if (entProtos.Count == 0) continue; @@ -59,9 +60,8 @@ public sealed class StartingGearPrototypeStorageTest server.EntMan.DeleteEntity(ent); } + server.EntMan.DeleteEntity(bag); } - - server.EntMan.DeleteEntity(bag); } mapManager.DeleteMap(testMap.MapId); diff --git a/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs b/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs index bf75188f02..da7e1e8e9b 100644 --- a/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs +++ b/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs @@ -40,7 +40,7 @@ public sealed class PrototypeSaveTest await pair.Client.WaitPost(() => { - foreach (var proto in pair.GetPrototypesWithComponent(Ignored)) + foreach (var (proto, _) in pair.GetPrototypesWithComponent(Ignored)) { var dummy = pair.Client.EntMan.Spawn(proto.ID); pair.Client.EntMan.RunMapInit(dummy, pair.Client.MetaData(dummy)); diff --git a/Content.IntegrationTests/Tests/StorageTest.cs b/Content.IntegrationTests/Tests/StorageTest.cs index 2d28534347..983ec70936 100644 --- a/Content.IntegrationTests/Tests/StorageTest.cs +++ b/Content.IntegrationTests/Tests/StorageTest.cs @@ -94,14 +94,13 @@ namespace Content.IntegrationTests.Tests await Assert.MultipleAsync(async () => { - foreach (var proto in pair.GetPrototypesWithComponent()) + foreach (var (proto, fill) in pair.GetPrototypesWithComponent()) { if (proto.HasComponent(compFact)) continue; StorageComponent? storage = null; ItemComponent? item = null; - StorageFillComponent fill = default!; var size = 0; await server.WaitAssertion(() => { @@ -112,7 +111,6 @@ namespace Content.IntegrationTests.Tests } proto.TryGetComponent("Item", out item); - fill = (StorageFillComponent) proto.Components[id].Component; size = GetFillSize(fill, false, protoMan, itemSys); }); @@ -179,7 +177,7 @@ namespace Content.IntegrationTests.Tests var itemSys = entMan.System(); - foreach (var proto in pair.GetPrototypesWithComponent()) + foreach (var (proto, fill) in pair.GetPrototypesWithComponent()) { if (proto.HasComponent(compFact)) continue; @@ -192,7 +190,6 @@ namespace Content.IntegrationTests.Tests if (entStorage == null) return; - var fill = (StorageFillComponent) proto.Components[id].Component; var size = GetFillSize(fill, true, protoMan, itemSys); Assert.That(size, Is.LessThanOrEqualTo(entStorage.Capacity), $"{proto.ID} storage fill is too large."); diff --git a/Content.Server/Administration/Managers/BanManager.cs b/Content.Server/Administration/Managers/BanManager.cs index 946770d6aa..1cdfb82224 100644 --- a/Content.Server/Administration/Managers/BanManager.cs +++ b/Content.Server/Administration/Managers/BanManager.cs @@ -14,13 +14,13 @@ using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Roles; using Robust.Server.Player; using Robust.Shared.Asynchronous; +using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -using Robust.Shared.Utility; namespace Content.Server.Administration.Managers; @@ -45,14 +45,12 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit public const string SawmillId = "admin.bans"; public const string JobPrefix = "Job:"; - private readonly Dictionary> _cachedRoleBans = new(); + private readonly Dictionary> _cachedRoleBans = new(); // Cached ban exemption flags are used to handle private readonly Dictionary _cachedBanExemptions = new(); public void Initialize() { - _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; - _netManager.RegisterNetMessage(); _db.SubscribeToNotifications(OnDatabaseNotification); @@ -63,12 +61,23 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit private async Task CachePlayerData(ICommonSession player, CancellationToken cancel) { - // Yeah so role ban loading code isn't integrated with exempt flag loading code. - // Have you seen how garbage role ban code code is? I don't feel like refactoring it right now. - var flags = await _db.GetBanExemption(player.UserId, cancel); + + var netChannel = player.Channel; + ImmutableArray? hwId = netChannel.UserData.HWId.Length == 0 ? null : netChannel.UserData.HWId; + var roleBans = await _db.GetServerRoleBansAsync(netChannel.RemoteEndPoint.Address, player.UserId, hwId, false); + + var userRoleBans = new List(); + foreach (var ban in roleBans) + { + userRoleBans.Add(ban); + } + cancel.ThrowIfCancellationRequested(); _cachedBanExemptions[player] = flags; + _cachedRoleBans[player] = userRoleBans; + + SendRoleBans(player); } private void ClearPlayerData(ICommonSession player) @@ -76,25 +85,15 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit _cachedBanExemptions.Remove(player); } - private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) - { - if (e.NewStatus != SessionStatus.Connected || _cachedRoleBans.ContainsKey(e.Session.UserId)) - return; - - var netChannel = e.Session.Channel; - ImmutableArray? hwId = netChannel.UserData.HWId.Length == 0 ? null : netChannel.UserData.HWId; - await CacheDbRoleBans(e.Session.UserId, netChannel.RemoteEndPoint.Address, hwId); - - SendRoleBans(e.Session); - } - private async Task AddRoleBan(ServerRoleBanDef banDef) { banDef = await _db.AddServerRoleBanAsync(banDef); - if (banDef.UserId != null) + if (banDef.UserId != null + && _playerManager.TryGetSessionById(banDef.UserId, out var player) + && _cachedRoleBans.TryGetValue(player, out var cachedBans)) { - _cachedRoleBans.GetOrNew(banDef.UserId.Value).Add(banDef); + cachedBans.Add(banDef); } return true; @@ -102,31 +101,21 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit public HashSet? GetRoleBans(NetUserId playerUserId) { - return _cachedRoleBans.TryGetValue(playerUserId, out var roleBans) + if (!_playerManager.TryGetSessionById(playerUserId, out var session)) + return null; + + return _cachedRoleBans.TryGetValue(session, out var roleBans) ? roleBans.Select(banDef => banDef.Role).ToHashSet() : null; } - private async Task CacheDbRoleBans(NetUserId userId, IPAddress? address = null, ImmutableArray? hwId = null) - { - var roleBans = await _db.GetServerRoleBansAsync(address, userId, hwId, false); - - var userRoleBans = new HashSet(); - foreach (var ban in roleBans) - { - userRoleBans.Add(ban); - } - - _cachedRoleBans[userId] = userRoleBans; - } - public void Restart() { // Clear out players that have disconnected. - var toRemove = new List(); + var toRemove = new ValueList(); foreach (var player in _cachedRoleBans.Keys) { - if (!_playerManager.TryGetSessionById(player, out _)) + if (player.Status == SessionStatus.Disconnected) toRemove.Add(player); } @@ -138,7 +127,7 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit // Check for expired bans foreach (var roleBans in _cachedRoleBans.Values) { - roleBans.RemoveWhere(ban => DateTimeOffset.Now > ban.ExpirationTime); + roleBans.RemoveAll(ban => DateTimeOffset.Now > ban.ExpirationTime); } } @@ -281,9 +270,9 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit var length = expires == null ? Loc.GetString("cmd-roleban-inf") : Loc.GetString("cmd-roleban-until", ("expires", expires)); _chat.SendAdminAlert(Loc.GetString("cmd-roleban-success", ("target", targetUsername ?? "null"), ("role", role), ("reason", reason), ("length", length))); - if (target != null) + if (target != null && _playerManager.TryGetSessionById(target.Value, out var session)) { - SendRoleBans(target.Value); + SendRoleBans(session); } } @@ -311,10 +300,12 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit await _db.AddServerRoleUnbanAsync(new ServerRoleUnbanDef(banId, unbanningAdmin, DateTimeOffset.Now)); - if (ban.UserId is { } player && _cachedRoleBans.TryGetValue(player, out var roleBans)) + if (ban.UserId is { } player + && _playerManager.TryGetSessionById(player, out var session) + && _cachedRoleBans.TryGetValue(session, out var roleBans)) { - roleBans.RemoveWhere(roleBan => roleBan.Id == ban.Id); - SendRoleBans(player); + roleBans.RemoveAll(roleBan => roleBan.Id == ban.Id); + SendRoleBans(session); } return $"Pardoned ban with id {banId}"; @@ -322,8 +313,12 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit public HashSet>? GetJobBans(NetUserId playerUserId) { - if (!_cachedRoleBans.TryGetValue(playerUserId, out var roleBans)) + if (!_playerManager.TryGetSessionById(playerUserId, out var session)) return null; + + if (!_cachedRoleBans.TryGetValue(session, out var roleBans)) + return null; + return roleBans .Where(ban => ban.Role.StartsWith(JobPrefix, StringComparison.Ordinal)) .Select(ban => new ProtoId(ban.Role[JobPrefix.Length..])) @@ -331,19 +326,9 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit } #endregion - public void SendRoleBans(NetUserId userId) - { - if (!_playerManager.TryGetSessionById(userId, out var player)) - { - return; - } - - SendRoleBans(player); - } - public void SendRoleBans(ICommonSession pSession) { - var roleBans = _cachedRoleBans.GetValueOrDefault(pSession.UserId) ?? new HashSet(); + var roleBans = _cachedRoleBans.GetValueOrDefault(pSession) ?? new List(); var bans = new MsgRoleBans() { Bans = roleBans.Select(o => o.Role).ToList() diff --git a/Content.Server/Administration/Managers/IBanManager.cs b/Content.Server/Administration/Managers/IBanManager.cs index b60e0a2535..c11e310a82 100644 --- a/Content.Server/Administration/Managers/IBanManager.cs +++ b/Content.Server/Administration/Managers/IBanManager.cs @@ -47,12 +47,6 @@ public interface IBanManager /// The time at which this role ban was pardoned. public Task PardonRoleBan(int banId, NetUserId? unbanningAdmin, DateTimeOffset unbanTime); - /// - /// Sends role bans to the target - /// - /// Player's user ID - public void SendRoleBans(NetUserId userId); - /// /// Sends role bans to the target /// diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index e4554d7d83..d81699c82d 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -95,9 +95,10 @@ public sealed partial class AdminVerbSystem if (HasComp(args.Target) || HasComp(args.Target)) return; + var explodeName = Loc.GetString("admin-smite-explode-name").ToLowerInvariant(); Verb explode = new() { - Text = "admin-smite-explode-name", + Text = explodeName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/smite.svg.192dpi.png")), Act = () => @@ -111,13 +112,14 @@ public sealed partial class AdminVerbSystem _bodySystem.GibBody(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-explode-description") + Message = string.Join(": ", explodeName, Loc.GetString("admin-smite-explode-description")) // we do this so the description tells admins the Text to run it via console. }; args.Verbs.Add(explode); + var chessName = Loc.GetString("admin-smite-chess-dimension-name").ToLowerInvariant(); Verb chess = new() { - Text = "admin-smite-chess-dimension-name", + Text = chessName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Fun/Tabletop/chessboard.rsi"), "chessboard"), Act = () => @@ -137,12 +139,13 @@ public sealed partial class AdminVerbSystem xform.WorldRotation = Angle.Zero; }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-chess-dimension-description") + Message = string.Join(": ", chessName, Loc.GetString("admin-smite-chess-dimension-description")) }; args.Verbs.Add(chess); if (TryComp(args.Target, out var flammable)) { + var flamesName = Loc.GetString("admin-smite-set-alight-name").ToLowerInvariant(); Verb flames = new() { Text = "admin-smite-set-alight-name", @@ -160,14 +163,15 @@ public sealed partial class AdminVerbSystem Filter.PvsExcept(args.Target), true, PopupType.MediumCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-set-alight-description") + Message = string.Join(": ", flamesName, Loc.GetString("admin-smite-set-alight-description")) }; args.Verbs.Add(flames); } + var monkeyName = Loc.GetString("admin-smite-monkeyify-name").ToLowerInvariant(); Verb monkey = new() { - Text = "admin-smite-monkeyify-name", + Text = monkeyName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Animals/monkey.rsi"), "monkey"), Act = () => @@ -175,13 +179,14 @@ public sealed partial class AdminVerbSystem _polymorphSystem.PolymorphEntity(args.Target, "AdminMonkeySmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-monkeyify-description") + Message = string.Join(": ", monkeyName, Loc.GetString("admin-smite-monkeyify-description")) }; args.Verbs.Add(monkey); + var disposalBinName = Loc.GetString("admin-smite-garbage-can-name").ToLowerInvariant(); Verb disposalBin = new() { - Text = "admin-smite-electrocute-name", + Text = disposalBinName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Structures/Piping/disposal.rsi"), "disposal"), Act = () => @@ -189,16 +194,17 @@ public sealed partial class AdminVerbSystem _polymorphSystem.PolymorphEntity(args.Target, "AdminDisposalsSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-garbage-can-description") + Message = string.Join(": ", disposalBinName, Loc.GetString("admin-smite-garbage-can-description")) }; args.Verbs.Add(disposalBin); if (TryComp(args.Target, out var damageable) && HasComp(args.Target)) { + var hardElectrocuteName = Loc.GetString("admin-smite-electrocute-name").ToLowerInvariant(); Verb hardElectrocute = new() { - Text = "admin-smite-creampie-name", + Text = hardElectrocuteName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Clothing/Hands/Gloves/Color/yellow.rsi"), "icon"), Act = () => @@ -234,16 +240,17 @@ public sealed partial class AdminVerbSystem TimeSpan.FromSeconds(30), refresh: true, ignoreInsulation: true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-electrocute-description") + Message = string.Join(": ", hardElectrocuteName, Loc.GetString("admin-smite-electrocute-description")) }; args.Verbs.Add(hardElectrocute); } if (TryComp(args.Target, out var creamPied)) { + var creamPieName = Loc.GetString("admin-smite-creampie-name").ToLowerInvariant(); Verb creamPie = new() { - Text = "admin-smite-remove-blood-name", + Text = creamPieName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Consumable/Food/Baked/pie.rsi"), "plain-slice"), Act = () => @@ -251,16 +258,17 @@ public sealed partial class AdminVerbSystem _creamPieSystem.SetCreamPied(args.Target, creamPied, true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-creampie-description") + Message = string.Join(": ", creamPieName, Loc.GetString("admin-smite-creampie-description")) }; args.Verbs.Add(creamPie); } if (TryComp(args.Target, out var bloodstream)) { + var bloodRemovalName = Loc.GetString("admin-smite-remove-blood-name").ToLowerInvariant(); Verb bloodRemoval = new() { - Text = "admin-smite-vomit-organs-name", + Text = bloodRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Fluids/tomato_splat.rsi"), "puddle-1"), Act = () => @@ -273,7 +281,7 @@ public sealed partial class AdminVerbSystem Filter.PvsExcept(args.Target), true, PopupType.MediumCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-remove-blood-description") + Message = string.Join(": ", bloodRemovalName, Loc.GetString("admin-smite-remove-blood-description")) }; args.Verbs.Add(bloodRemoval); } @@ -281,9 +289,10 @@ public sealed partial class AdminVerbSystem // bobby... if (TryComp(args.Target, out var body)) { + var vomitOrgansName = Loc.GetString("admin-smite-vomit-organs-name").ToLowerInvariant(); Verb vomitOrgans = new() { - Text = "admin-smite-remove-hands-name", + Text = vomitOrgansName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("/Textures/Fluids/vomit_toxin.rsi"), "vomit_toxin-1"), Act = () => @@ -305,13 +314,14 @@ public sealed partial class AdminVerbSystem Filter.PvsExcept(args.Target), true, PopupType.MediumCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-vomit-organs-description") + Message = string.Join(": ", vomitOrgansName, Loc.GetString("admin-smite-vomit-organs-description")) }; args.Verbs.Add(vomitOrgans); + var handsRemovalName = Loc.GetString("admin-smite-remove-hands-name").ToLowerInvariant(); Verb handsRemoval = new() { - Text = "admin-smite-remove-hand-name", + Text = handsRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/remove-hands.png")), Act = () => @@ -327,13 +337,14 @@ public sealed partial class AdminVerbSystem Filter.PvsExcept(args.Target), true, PopupType.Medium); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-remove-hands-description") + Message = string.Join(": ", handsRemovalName, Loc.GetString("admin-smite-remove-hands-description")) }; args.Verbs.Add(handsRemoval); + var handRemovalName = Loc.GetString("admin-smite-remove-hand-name").ToLowerInvariant(); Verb handRemoval = new() { - Text = "admin-smite-pinball-name", + Text = handRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/remove-hand.png")), Act = () => @@ -350,13 +361,14 @@ public sealed partial class AdminVerbSystem Filter.PvsExcept(args.Target), true, PopupType.Medium); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-remove-hand-description") + Message = string.Join(": ", handRemovalName, Loc.GetString("admin-smite-remove-hand-description")) }; args.Verbs.Add(handRemoval); + var stomachRemovalName = Loc.GetString("admin-smite-stomach-removal-name").ToLowerInvariant(); Verb stomachRemoval = new() { - Text = "admin-smite-yeet-name", + Text = stomachRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "stomach"), Act = () => @@ -370,13 +382,14 @@ public sealed partial class AdminVerbSystem args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-stomach-removal-description"), + Message = string.Join(": ", stomachRemovalName, Loc.GetString("admin-smite-stomach-removal-description")) }; args.Verbs.Add(stomachRemoval); + var lungRemovalName = Loc.GetString("admin-smite-lung-removal-name").ToLowerInvariant(); Verb lungRemoval = new() { - Text = "admin-smite-become-bread-name", + Text = lungRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "lung-r"), Act = () => @@ -390,16 +403,17 @@ public sealed partial class AdminVerbSystem args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-lung-removal-description"), + Message = string.Join(": ", lungRemovalName, Loc.GetString("admin-smite-lung-removal-description")) }; args.Verbs.Add(lungRemoval); } if (TryComp(args.Target, out var physics)) { + var pinballName = Loc.GetString("admin-smite-pinball-name").ToLowerInvariant(); Verb pinball = new() { - Text = "admin-smite-ghostkick-name", + Text = pinballName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Fun/toys.rsi"), "basketball"), Act = () => @@ -427,13 +441,14 @@ public sealed partial class AdminVerbSystem _physics.SetAngularDamping(args.Target, physics, 0f); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-pinball-description") + Message = string.Join(": ", pinballName, Loc.GetString("admin-smite-pinball-description")) }; args.Verbs.Add(pinball); + var yeetName = Loc.GetString("admin-smite-yeet-name").ToLowerInvariant(); Verb yeet = new() { - Text = "admin-smite-nyanify-name", + Text = yeetName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), Act = () => @@ -457,11 +472,12 @@ public sealed partial class AdminVerbSystem _physics.SetAngularDamping(args.Target, physics, 0f); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-yeet-description") + Message = string.Join(": ", yeetName, Loc.GetString("admin-smite-yeet-description")) }; args.Verbs.Add(yeet); } + var breadName = Loc.GetString("admin-smite-become-bread-name").ToLowerInvariant(); // Will I get cancelled for breadName-ing you? Verb bread = new() { Text = "admin-smite-kill-sign-name", @@ -472,10 +488,11 @@ public sealed partial class AdminVerbSystem _polymorphSystem.PolymorphEntity(args.Target, "AdminBreadSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-become-bread-description") + Message = string.Join(": ", breadName, Loc.GetString("admin-smite-become-bread-description")) }; args.Verbs.Add(bread); + var mouseName = Loc.GetString("admin-smite-become-mouse-name").ToLowerInvariant(); Verb mouse = new() { Text = "admin-smite-cluwne-name", @@ -486,15 +503,16 @@ public sealed partial class AdminVerbSystem _polymorphSystem.PolymorphEntity(args.Target, "AdminMouseSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-become-mouse-description") + Message = string.Join(": ", mouseName, Loc.GetString("admin-smite-become-mouse-description")) }; args.Verbs.Add(mouse); if (TryComp(args.Target, out var actorComponent)) { + var ghostKickName = Loc.GetString("admin-smite-ghostkick-name").ToLowerInvariant(); Verb ghostKick = new() { - Text = "admin-smite-anger-pointing-arrows-name", + Text = ghostKickName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/gavel.svg.192dpi.png")), Act = () => @@ -502,15 +520,18 @@ public sealed partial class AdminVerbSystem _ghostKickManager.DoDisconnect(actorComponent.PlayerSession.Channel, "Smitten."); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-ghostkick-description") + Message = string.Join(": ", ghostKickName, Loc.GetString("admin-smite-ghostkick-description")) + }; args.Verbs.Add(ghostKick); } - if (TryComp(args.Target, out var inventory)) { + if (TryComp(args.Target, out var inventory)) + { + var nyanifyName = Loc.GetString("admin-smite-nyanify-name").ToLowerInvariant(); Verb nyanify = new() { - Text = "admin-smite-dust-name", + Text = nyanifyName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Clothing/Head/Hats/catears.rsi"), "icon"), Act = () => @@ -521,13 +542,14 @@ public sealed partial class AdminVerbSystem _inventorySystem.TryEquip(args.Target, ears, "head", true, true, false, inventory); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-nyanify-description") + Message = string.Join(": ", nyanifyName, Loc.GetString("admin-smite-nyanify-description")) }; args.Verbs.Add(nyanify); + var killSignName = Loc.GetString("admin-smite-kill-sign-name").ToLowerInvariant(); Verb killSign = new() { - Text = "admin-smite-buffering-name", + Text = killSignName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Misc/killsign.rsi"), "icon"), Act = () => @@ -535,13 +557,14 @@ public sealed partial class AdminVerbSystem EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-kill-sign-description") + Message = string.Join(": ", killSignName, Loc.GetString("admin-smite-kill-sign-description")) }; args.Verbs.Add(killSign); + var cluwneName = Loc.GetString("admin-smite-cluwne-name").ToLowerInvariant(); Verb cluwne = new() { - Text = "admin-smite-become-instrument-name", + Text = cluwneName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Clothing/Mask/cluwne.rsi"), "icon"), @@ -551,13 +574,14 @@ public sealed partial class AdminVerbSystem EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-cluwne-description") + Message = string.Join(": ", cluwneName, Loc.GetString("admin-smite-cluwne-description")) }; args.Verbs.Add(cluwne); + var maidenName = Loc.GetString("admin-smite-maid-name").ToLowerInvariant(); Verb maiden = new() { - Text = "admin-smite-remove-gravity-name", + Text = maidenName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Clothing/Uniforms/Jumpskirt/janimaid.rsi"), "icon"), Act = () => @@ -570,14 +594,15 @@ public sealed partial class AdminVerbSystem }); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-maid-description") + Message = string.Join(": ", maidenName, Loc.GetString("admin-smite-maid-description")) }; args.Verbs.Add(maiden); } + var angerPointingArrowsName = Loc.GetString("admin-smite-anger-pointing-arrows-name").ToLowerInvariant(); Verb angerPointingArrows = new() { - Text = "admin-smite-reptilian-species-swap-name", + Text = angerPointingArrowsName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Interface/Misc/pointing.rsi"), "pointing"), Act = () => @@ -585,13 +610,14 @@ public sealed partial class AdminVerbSystem EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-anger-pointing-arrows-description") + Message = string.Join(": ", angerPointingArrowsName, Loc.GetString("admin-smite-anger-pointing-arrows-description")) }; args.Verbs.Add(angerPointingArrows); + var dustName = Loc.GetString("admin-smite-dust-name").ToLowerInvariant(); Verb dust = new() { - Text = "admin-smite-locker-stuff-name", + Text = dustName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Materials/materials.rsi"), "ash"), Act = () => @@ -601,13 +627,14 @@ public sealed partial class AdminVerbSystem _popupSystem.PopupEntity(Loc.GetString("admin-smite-turned-ash-other", ("name", args.Target)), args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-dust-description"), + Message = string.Join(": ", dustName, Loc.GetString("admin-smite-dust-description")) }; args.Verbs.Add(dust); + var youtubeVideoSimulationName = Loc.GetString("admin-smite-buffering-name").ToLowerInvariant(); Verb youtubeVideoSimulation = new() { - Text = "admin-smite-headstand-name", + Text = youtubeVideoSimulationName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/Misc/buffering_smite_icon.png")), Act = () => @@ -615,10 +642,11 @@ public sealed partial class AdminVerbSystem EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-buffering-description"), + Message = string.Join(": ", youtubeVideoSimulationName, Loc.GetString("admin-smite-buffering-description")) }; args.Verbs.Add(youtubeVideoSimulation); + var instrumentationName = Loc.GetString("admin-smite-become-instrument-name").ToLowerInvariant(); Verb instrumentation = new() { Text = "admin-smite-become-mouse-name", @@ -629,13 +657,14 @@ public sealed partial class AdminVerbSystem _polymorphSystem.PolymorphEntity(args.Target, "AdminInstrumentSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-become-instrument-description"), + Message = string.Join(": ", instrumentationName, Loc.GetString("admin-smite-become-instrument-description")) }; args.Verbs.Add(instrumentation); + var noGravityName = Loc.GetString("admin-smite-remove-gravity-name").ToLowerInvariant(); Verb noGravity = new() { - Text = "admin-smite-maid-name", + Text = noGravityName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("/Textures/Structures/Machines/gravity_generator.rsi"), "off"), Act = () => @@ -646,13 +675,14 @@ public sealed partial class AdminVerbSystem Dirty(args.Target, grav); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-remove-gravity-description"), + Message = string.Join(": ", noGravityName, Loc.GetString("admin-smite-remove-gravity-description")) }; args.Verbs.Add(noGravity); + var reptilianName = Loc.GetString("admin-smite-reptilian-species-swap-name").ToLowerInvariant(); Verb reptilian = new() { - Text = "admin-smite-zoom-in-name", + Text = reptilianName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Fun/toys.rsi"), "plushie_lizard"), Act = () => @@ -660,13 +690,14 @@ public sealed partial class AdminVerbSystem _polymorphSystem.PolymorphEntity(args.Target, "AdminLizardSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-reptilian-species-swap-description"), + Message = string.Join(": ", reptilianName, Loc.GetString("admin-smite-reptilian-species-swap-description")) }; args.Verbs.Add(reptilian); + var lockerName = Loc.GetString("admin-smite-locker-stuff-name").ToLowerInvariant(); Verb locker = new() { - Text = "admin-smite-flip-eye-name", + Text = lockerName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Structures/Storage/closet.rsi"), "generic"), Act = () => @@ -682,10 +713,11 @@ public sealed partial class AdminVerbSystem _weldableSystem.SetWeldedState(locker, true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-locker-stuff-description"), + Message = string.Join(": ", lockerName, Loc.GetString("admin-smite-locker-stuff-description")) }; args.Verbs.Add(locker); + var headstandName = Loc.GetString("admin-smite-headstand-name").ToLowerInvariant(); Verb headstand = new() { Text = "admin-smite-run-walk-swap-name", @@ -696,13 +728,14 @@ public sealed partial class AdminVerbSystem EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-headstand-description"), + Message = string.Join(": ", headstandName, Loc.GetString("admin-smite-headstand-description")) }; args.Verbs.Add(headstand); + var zoomInName = Loc.GetString("admin-smite-zoom-in-name").ToLowerInvariant(); Verb zoomIn = new() { - Text = "admin-smite-super-speed-name", + Text = zoomInName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/zoom.png")), Act = () => @@ -711,13 +744,14 @@ public sealed partial class AdminVerbSystem _eyeSystem.SetZoom(args.Target, eye.TargetZoom * 0.2f, ignoreLimits: true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-zoom-in-description"), + Message = string.Join(": ", zoomInName, Loc.GetString("admin-smite-zoom-in-description")) }; args.Verbs.Add(zoomIn); + var flipEyeName = Loc.GetString("admin-smite-flip-eye-name").ToLowerInvariant(); Verb flipEye = new() { - Text = "admin-smite-stomach-removal-name", + Text = flipEyeName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/flip.png")), Act = () => @@ -726,13 +760,14 @@ public sealed partial class AdminVerbSystem _eyeSystem.SetZoom(args.Target, eye.TargetZoom * -1, ignoreLimits: true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-flip-eye-description"), + Message = string.Join(": ", flipEyeName, Loc.GetString("admin-smite-flip-eye-description")) }; args.Verbs.Add(flipEye); + var runWalkSwapName = Loc.GetString("admin-smite-run-walk-swap-name").ToLowerInvariant(); Verb runWalkSwap = new() { - Text = "admin-smite-speak-backwards-name", + Text = runWalkSwapName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/run-walk-swap.png")), Act = () => @@ -746,13 +781,14 @@ public sealed partial class AdminVerbSystem args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-run-walk-swap-description"), + Message = string.Join(": ", runWalkSwapName, Loc.GetString("admin-smite-run-walk-swap-description")) }; args.Verbs.Add(runWalkSwap); + var backwardsAccentName = Loc.GetString("admin-smite-speak-backwards-name").ToLowerInvariant(); Verb backwardsAccent = new() { - Text = "admin-smite-lung-removal-name", + Text = backwardsAccentName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/help-backwards.png")), Act = () => @@ -760,13 +796,14 @@ public sealed partial class AdminVerbSystem EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-speak-backwards-description"), + Message = string.Join(": ", backwardsAccentName, Loc.GetString("admin-smite-speak-backwards-description")) }; args.Verbs.Add(backwardsAccent); + var disarmProneName = Loc.GetString("admin-smite-disarm-prone-name").ToLowerInvariant(); Verb disarmProne = new() { - Text = "admin-smite-disarm-prone-name", + Text = disarmProneName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/Actions/disarm.png")), Act = () => @@ -774,10 +811,11 @@ public sealed partial class AdminVerbSystem EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-disarm-prone-description"), + Message = string.Join(": ", disarmProneName, Loc.GetString("admin-smite-disarm-prone-description")) }; args.Verbs.Add(disarmProne); + var superSpeedName = Loc.GetString("admin-smite-super-speed-name").ToLowerInvariant(); Verb superSpeed = new() { Text = "admin-smite-garbage-can-name", @@ -792,41 +830,45 @@ public sealed partial class AdminVerbSystem args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-super-speed-description"), + Message = string.Join(": ", superSpeedName, Loc.GetString("admin-smite-super-speed-description")) }; args.Verbs.Add(superSpeed); //Bonk + var superBonkLiteName = Loc.GetString("admin-smite-super-bonk-lite-name").ToLowerInvariant(); Verb superBonkLite = new() { - Text = "admin-smite-super-bonk-name", + Text = superBonkLiteName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("Structures/Furniture/Tables/glass.rsi"), "full"), Act = () => { _superBonkSystem.StartSuperBonk(args.Target, stopWhenDead: true); }, - Message = Loc.GetString("admin-smite-super-bonk-lite-description"), Impact = LogImpact.Extreme, + Message = string.Join(": ", superBonkLiteName, Loc.GetString("admin-smite-super-bonk-lite-description")) }; args.Verbs.Add(superBonkLite); + + var superBonkName = Loc.GetString("admin-smite-super-bonk-name").ToLowerInvariant(); Verb superBonk= new() { - Text = "admin-smite-super-bonk-lite-name", + Text = superBonkName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("Structures/Furniture/Tables/generic.rsi"), "full"), Act = () => { _superBonkSystem.StartSuperBonk(args.Target); }, - Message = Loc.GetString("admin-smite-super-bonk-description"), Impact = LogImpact.Extreme, + Message = string.Join(": ", superBonkName, Loc.GetString("admin-smite-super-bonk-description")) }; args.Verbs.Add(superBonk); + var superslipName = Loc.GetString("admin-smite-super-slip-name").ToLowerInvariant(); Verb superslip = new() { - Text = "admin-smite-super-slip-name", + Text = superslipName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("Objects/Specific/Janitorial/soap.rsi"), "omega-4"), Act = () => @@ -846,7 +888,7 @@ public sealed partial class AdminVerbSystem } }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-super-slip-description") + Message = string.Join(": ", superslipName, Loc.GetString("admin-smite-super-slip-description")) }; args.Verbs.Add(superslip); } diff --git a/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs b/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs index 5123500239..a60d042fb5 100644 --- a/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs +++ b/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs @@ -1,9 +1,11 @@ +using Robust.Shared.Prototypes; + namespace Content.Server.Atmos.Components { /// /// Used by FixGridAtmos. Entities with this may get magically auto-deleted on map initialization in future. /// - [RegisterComponent] + [RegisterComponent, EntityCategory("Mapping")] public sealed partial class AtmosFixMarkerComponent : Component { // See FixGridAtmos for more details diff --git a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs index d9a475dbfb..2d35ae5973 100644 --- a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs +++ b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs @@ -1,15 +1,19 @@ using Content.Server.Atmos.Monitor.Components; using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.Pinpointer; using Content.Server.Power.Components; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Atmos.Consoles; using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; +using Content.Shared.DeviceNetwork.Components; using Content.Shared.Pinpointer; +using Content.Shared.Tag; using Robust.Server.GameObjects; using Robust.Shared.Map.Components; -using Robust.Shared.Player; +using Robust.Shared.Timing; using System.Diagnostics.CodeAnalysis; using System.Linq; @@ -21,6 +25,12 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem [Dependency] private readonly AirAlarmSystem _airAlarmSystem = default!; [Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNet = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly MapSystem _mapSystem = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; + [Dependency] private readonly NavMapSystem _navMapSystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly DeviceListSystem _deviceListSystem = default!; private const float UpdateTime = 1.0f; @@ -38,6 +48,9 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem // Grid events SubscribeLocalEvent(OnGridSplit); + + // Alarm events + SubscribeLocalEvent(OnDeviceTerminatingEvent); SubscribeLocalEvent(OnDeviceAnchorChanged); } @@ -81,6 +94,16 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem } private void OnDeviceAnchorChanged(EntityUid uid, AtmosAlertsDeviceComponent component, AnchorStateChangedEvent args) + { + OnDeviceAdditionOrRemoval(uid, component, args.Anchored); + } + + private void OnDeviceTerminatingEvent(EntityUid uid, AtmosAlertsDeviceComponent component, ref EntityTerminatingEvent args) + { + OnDeviceAdditionOrRemoval(uid, component, false); + } + + private void OnDeviceAdditionOrRemoval(EntityUid uid, AtmosAlertsDeviceComponent component, bool isAdding) { var xform = Transform(uid); var gridUid = xform.GridUid; @@ -88,10 +111,13 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem if (gridUid == null) return; - if (!TryGetAtmosDeviceNavMapData(uid, component, xform, gridUid.Value, out var data)) + if (!TryComp(xform.GridUid, out var navMap)) return; - var netEntity = EntityManager.GetNetEntity(uid); + if (!TryGetAtmosDeviceNavMapData(uid, component, xform, out var data)) + return; + + var netEntity = GetNetEntity(uid); var query = AllEntityQuery(); while (query.MoveNext(out var ent, out var entConsole, out var entXform)) @@ -99,11 +125,18 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem if (gridUid != entXform.GridUid) continue; - if (args.Anchored) + if (isAdding) + { entConsole.AtmosDevices.Add(data.Value); + } - else if (!args.Anchored) + else + { entConsole.AtmosDevices.RemoveWhere(x => x.NetEntity == netEntity); + _navMapSystem.RemoveNavMapRegion(gridUid.Value, navMap, netEntity); + } + + Dirty(ent, entConsole); } } @@ -209,6 +242,12 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem if (entDevice.Group != group) continue; + if (!TryComp(entXform.GridUid, out var mapGrid)) + continue; + + if (!TryComp(entXform.GridUid, out var navMap)) + continue; + // If emagged, change the alarm type to normal var alarmState = (entAtmosAlarmable.LastAlarmState == AtmosAlarmType.Emagged) ? AtmosAlarmType.Normal : entAtmosAlarmable.LastAlarmState; @@ -216,14 +255,45 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem if (TryComp(ent, out var entAPCPower) && !entAPCPower.Powered) alarmState = AtmosAlarmType.Invalid; + // Create entry + var netEnt = GetNetEntity(ent); + var entry = new AtmosAlertsComputerEntry - (GetNetEntity(ent), + (netEnt, GetNetCoordinates(entXform.Coordinates), entDevice.Group, alarmState, MetaData(ent).EntityName, entDeviceNetwork.Address); + // Get the list of sensors attached to the alarm + var sensorList = TryComp(ent, out var entDeviceList) ? _deviceListSystem.GetDeviceList(ent, entDeviceList) : null; + + if (sensorList?.Any() == true) + { + var alarmRegionSeeds = new HashSet(); + + // If valid and anchored, use the position of sensors as seeds for the region + foreach (var (address, sensorEnt) in sensorList) + { + if (!sensorEnt.IsValid() || !HasComp(sensorEnt)) + continue; + + var sensorXform = Transform(sensorEnt); + + if (sensorXform.Anchored && sensorXform.GridUid == entXform.GridUid) + alarmRegionSeeds.Add(_mapSystem.CoordinatesToTile(entXform.GridUid.Value, mapGrid, _transformSystem.GetMapCoordinates(sensorEnt, sensorXform))); + } + + var regionProperties = new SharedNavMapSystem.NavMapRegionProperties(netEnt, AtmosAlertsComputerUiKey.Key, alarmRegionSeeds); + _navMapSystem.AddOrUpdateNavMapRegion(gridUid, navMap, netEnt, regionProperties); + } + + else + { + _navMapSystem.RemoveNavMapRegion(entXform.GridUid.Value, navMap, netEnt); + } + alarmStateData.Add(entry); } @@ -306,7 +376,10 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem var query = AllEntityQuery(); while (query.MoveNext(out var ent, out var entComponent, out var entXform)) { - if (TryGetAtmosDeviceNavMapData(ent, entComponent, entXform, gridUid, out var data)) + if (entXform.GridUid != gridUid) + continue; + + if (TryGetAtmosDeviceNavMapData(ent, entComponent, entXform, out var data)) atmosDeviceNavMapData.Add(data.Value); } @@ -317,14 +390,10 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem (EntityUid uid, AtmosAlertsDeviceComponent component, TransformComponent xform, - EntityUid gridUid, [NotNullWhen(true)] out AtmosAlertsDeviceNavMapData? output) { output = null; - if (xform.GridUid != gridUid) - return false; - if (!xform.Anchored) return false; diff --git a/Content.Server/Body/Systems/BloodstreamSystem.cs b/Content.Server/Body/Systems/BloodstreamSystem.cs index 18790e7326..198123cc5f 100644 --- a/Content.Server/Body/Systems/BloodstreamSystem.cs +++ b/Content.Server/Body/Systems/BloodstreamSystem.cs @@ -472,7 +472,7 @@ public sealed class BloodstreamSystem : EntitySystem return; } - var currentVolume = bloodSolution.RemoveReagent(component.BloodReagent, bloodSolution.Volume); + var currentVolume = bloodSolution.RemoveReagent(component.BloodReagent, bloodSolution.Volume, ignoreReagentData: true); component.BloodReagent = reagent; diff --git a/Content.Server/Botany/Components/PlantHolderComponent.cs b/Content.Server/Botany/Components/PlantHolderComponent.cs index 8218bead72..f0661e4a30 100644 --- a/Content.Server/Botany/Components/PlantHolderComponent.cs +++ b/Content.Server/Botany/Components/PlantHolderComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Chemistry.Components; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Audio; namespace Content.Server.Botany.Components; @@ -23,6 +24,9 @@ public sealed partial class PlantHolderComponent : Component [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan LastCycle = TimeSpan.Zero; + [DataField] + public SoundSpecifier? WateringSound; + [DataField] public bool UpdateSpriteAfterUpdate; diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 0fdca029b7..34d6a75bf2 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -1,6 +1,5 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Botany.Components; -using Content.Server.Fluids.Components; using Content.Server.Kitchen.Components; using Content.Server.Popups; using Content.Shared.Chemistry.EntitySystems; @@ -18,7 +17,6 @@ using Content.Shared.Popups; using Content.Shared.Random; using Content.Shared.Tag; using Robust.Server.GameObjects; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -37,7 +35,6 @@ public sealed class PlantHolderSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly SharedPointLightSystem _pointLight = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly RandomHelperSystem _randomHelper = default!; @@ -53,6 +50,7 @@ public sealed class PlantHolderSystem : EntitySystem SubscribeLocalEvent(OnExamine); SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnSolutionTransferred); } public override void Update(float frameTime) @@ -158,6 +156,7 @@ public sealed class PlantHolderSystem : EntitySystem if (!_botany.TryGetSeed(seeds, out var seed)) return; + args.Handled = true; var name = Loc.GetString(seed.Name); var noun = Loc.GetString(seed.Noun); _popup.PopupCursor(Loc.GetString("plant-holder-component-plant-success-message", @@ -185,6 +184,7 @@ public sealed class PlantHolderSystem : EntitySystem return; } + args.Handled = true; _popup.PopupCursor(Loc.GetString("plant-holder-component-already-seeded-message", ("name", Comp(uid).EntityName)), args.User, PopupType.Medium); return; @@ -192,6 +192,7 @@ public sealed class PlantHolderSystem : EntitySystem if (_tagSystem.HasTag(args.Used, "Hoe")) { + args.Handled = true; if (component.WeedLevel > 0) { _popup.PopupCursor(Loc.GetString("plant-holder-component-remove-weeds-message", @@ -211,6 +212,7 @@ public sealed class PlantHolderSystem : EntitySystem if (HasComp(args.Used)) { + args.Handled = true; if (component.Seed != null) { _popup.PopupCursor(Loc.GetString("plant-holder-component-remove-plant-message", @@ -228,39 +230,9 @@ public sealed class PlantHolderSystem : EntitySystem return; } - if (_solutionContainerSystem.TryGetDrainableSolution(args.Used, out var solution, out _) - && _solutionContainerSystem.ResolveSolution(uid, component.SoilSolutionName, ref component.SoilSolution) - && TryComp(args.Used, out SprayComponent? spray)) - { - var amount = FixedPoint2.New(1); - - var targetEntity = uid; - var solutionEntity = args.Used; - - _audio.PlayPvs(spray.SpraySound, args.Used, AudioParams.Default.WithVariation(0.125f)); - - var split = _solutionContainerSystem.Drain(solutionEntity, solution.Value, amount); - - if (split.Volume == 0) - { - _popup.PopupCursor(Loc.GetString("plant-holder-component-no-plant-message", - ("owner", args.Used)), args.User); - return; - } - - _popup.PopupCursor(Loc.GetString("plant-holder-component-spray-message", - ("owner", uid), - ("amount", split.Volume)), args.User, PopupType.Medium); - - _solutionContainerSystem.TryAddSolution(component.SoilSolution.Value, split); - - ForceUpdateByExternalCause(uid, component); - - return; - } - if (_tagSystem.HasTag(args.Used, "PlantSampleTaker")) { + args.Handled = true; if (component.Seed == null) { _popup.PopupCursor(Loc.GetString("plant-holder-component-nothing-to-sample-message"), args.User); @@ -316,10 +288,15 @@ public sealed class PlantHolderSystem : EntitySystem } if (HasComp(args.Used)) + { + args.Handled = true; DoHarvest(uid, args.User, component); + return; + } if (TryComp(args.Used, out var produce)) { + args.Handled = true; _popup.PopupCursor(Loc.GetString("plant-holder-component-compost-message", ("owner", uid), ("usingItem", args.Used)), args.User, PopupType.Medium); @@ -351,6 +328,10 @@ public sealed class PlantHolderSystem : EntitySystem } } + private void OnSolutionTransferred(Entity ent, ref SolutionTransferredEvent args) + { + _audio.PlayPvs(ent.Comp.WateringSound, ent.Owner); + } private void OnInteractHand(Entity entity, ref InteractHandEvent args) { DoHarvest(entity, args.User, entity.Comp); diff --git a/Content.Server/Chat/Managers/ChatSanitizationManager.cs b/Content.Server/Chat/Managers/ChatSanitizationManager.cs index 4c0485c165..c38e16cf5f 100644 --- a/Content.Server/Chat/Managers/ChatSanitizationManager.cs +++ b/Content.Server/Chat/Managers/ChatSanitizationManager.cs @@ -1,15 +1,18 @@ using System.Diagnostics.CodeAnalysis; -using System.Globalization; +using System.Text.RegularExpressions; using Content.Shared.CCVar; using Robust.Shared.Configuration; namespace Content.Server.Chat.Managers; +/// +/// Sanitizes messages! +/// It currently ony removes the shorthands for emotes (like "lol" or "^-^") from a chat message and returns the last +/// emote in their message +/// public sealed class ChatSanitizationManager : IChatSanitizationManager { - [Dependency] private readonly IConfigurationManager _configurationManager = default!; - - private static readonly Dictionary SmileyToEmote = new() + private static readonly Dictionary ShorthandToEmote = new() { // CP14-RU-Localization-Start { "лол", "chatsan-laughs" }, @@ -60,7 +63,7 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { ":D", "chatsan-smiles-widely" }, { "D:", "chatsan-frowns-deeply" }, { ":O", "chatsan-surprised" }, - { ":3", "chatsan-smiles" }, //nope + { ":3", "chatsan-smiles" }, { ":S", "chatsan-uncertain" }, { ":>", "chatsan-grins" }, { ":<", "chatsan-pouts" }, @@ -102,7 +105,7 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { "kek", "chatsan-laughs" }, { "rofl", "chatsan-laughs" }, { "o7", "chatsan-salutes" }, - { ";_;7", "chatsan-tearfully-salutes"}, + { ";_;7", "chatsan-tearfully-salutes" }, { "idk", "chatsan-shrugs" }, { ";)", "chatsan-winks" }, { ";]", "chatsan-winks" }, @@ -115,9 +118,12 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { "(':", "chatsan-tearfully-smiles" }, { "[':", "chatsan-tearfully-smiles" }, { "('=", "chatsan-tearfully-smiles" }, - { "['=", "chatsan-tearfully-smiles" }, + { "['=", "chatsan-tearfully-smiles" } }; + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly ILocalizationManager _loc = default!; + private bool _doSanitize; public void Initialize() @@ -125,29 +131,60 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager _configurationManager.OnValueChanged(CCVars.ChatSanitizerEnabled, x => _doSanitize = x, true); } - public bool TrySanitizeOutSmilies(string input, EntityUid speaker, out string sanitized, [NotNullWhen(true)] out string? emote) + /// + /// Remove the shorthands from the message, returning the last one found as the emote + /// + /// The pre-sanitized message + /// The speaker + /// The sanitized message with shorthands removed + /// The localized emote + /// True if emote has been sanitized out + public bool TrySanitizeEmoteShorthands(string message, + EntityUid speaker, + out string sanitized, + [NotNullWhen(true)] out string? emote) { - if (!_doSanitize) - { - sanitized = input; - emote = null; - return false; - } - - input = input.TrimEnd(); - - foreach (var (smiley, replacement) in SmileyToEmote) - { - if (input.EndsWith(smiley, true, CultureInfo.InvariantCulture)) - { - sanitized = input.Remove(input.Length - smiley.Length).TrimEnd(); - emote = Loc.GetString(replacement, ("ent", speaker)); - return true; - } - } - - sanitized = input; emote = null; - return false; + sanitized = message; + + if (!_doSanitize) + return false; + + // -1 is just a canary for nothing found yet + var lastEmoteIndex = -1; + + foreach (var (shorthand, emoteKey) in ShorthandToEmote) + { + // We have to escape it because shorthands like ":)" or "-_-" would break the regex otherwise. + var escaped = Regex.Escape(shorthand); + + // So there are 2 cases: + // - If there is whitespace before it and after it is either punctuation, whitespace, or the end of the line + // Delete the word and the whitespace before + // - If it is at the start of the string and is followed by punctuation, whitespace, or the end of the line + // Delete the word and the punctuation if it exists. + var pattern = + $@"\s{escaped}(?=\p{{P}}|\s|$)|^{escaped}(?:\p{{P}}|(?=\s|$))"; + + var r = new Regex(pattern, RegexOptions.RightToLeft | RegexOptions.IgnoreCase); + + // We're using sanitized as the original message until the end so that we can make sure the indices of + // the emotes are accurate. + var lastMatch = r.Match(sanitized); + + if (!lastMatch.Success) + continue; + + if (lastMatch.Index > lastEmoteIndex) + { + lastEmoteIndex = lastMatch.Index; + emote = _loc.GetString(emoteKey, ("ent", speaker)); + } + + message = r.Replace(message, string.Empty); + } + + sanitized = message.Trim(); + return emote is not null; } } diff --git a/Content.Server/Chat/Managers/IChatSanitizationManager.cs b/Content.Server/Chat/Managers/IChatSanitizationManager.cs index c067cf02ee..ac85d4b4a7 100644 --- a/Content.Server/Chat/Managers/IChatSanitizationManager.cs +++ b/Content.Server/Chat/Managers/IChatSanitizationManager.cs @@ -6,5 +6,8 @@ public interface IChatSanitizationManager { public void Initialize(); - public bool TrySanitizeOutSmilies(string input, EntityUid speaker, out string sanitized, [NotNullWhen(true)] out string? emote); + public bool TrySanitizeEmoteShorthands(string input, + EntityUid speaker, + out string sanitized, + [NotNullWhen(true)] out string? emote); } diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 624c18130b..d834d8304a 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -746,8 +746,12 @@ public sealed partial class ChatSystem : SharedChatSystem // ReSharper disable once InconsistentNaming private string SanitizeInGameICMessage(EntityUid source, string message, out string? emoteStr, bool capitalize = true, bool punctuate = false, bool capitalizeTheWordI = true) { - var newMessage = message.Trim(); - newMessage = SanitizeMessageReplaceWords(newMessage); + var newMessage = SanitizeMessageReplaceWords(message.Trim()); + + GetRadioKeycodePrefix(source, newMessage, out newMessage, out var prefix); + + // Sanitize it first as it might change the word order + _sanitizer.TrySanitizeEmoteShorthands(newMessage, source, out newMessage, out emoteStr); if (capitalize) newMessage = SanitizeMessageCapital(newMessage); @@ -756,9 +760,7 @@ public sealed partial class ChatSystem : SharedChatSystem if (punctuate) newMessage = SanitizeMessagePeriod(newMessage); - _sanitizer.TrySanitizeOutSmilies(newMessage, source, out newMessage, out emoteStr); - - return newMessage; + return prefix + newMessage; } private string SanitizeInGameOOCMessage(string message) diff --git a/Content.Server/Chemistry/Components/SolutionInjectWhileEmbeddedComponent.cs b/Content.Server/Chemistry/Components/SolutionInjectWhileEmbeddedComponent.cs new file mode 100644 index 0000000000..0f10e2a449 --- /dev/null +++ b/Content.Server/Chemistry/Components/SolutionInjectWhileEmbeddedComponent.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + + +namespace Content.Server.Chemistry.Components; + +/// +/// Used for embeddable entities that should try to inject a +/// contained solution into a target over time while they are embbeded into. +/// +[RegisterComponent, AutoGenerateComponentPause] +public sealed partial class SolutionInjectWhileEmbeddedComponent : BaseSolutionInjectOnEventComponent { + /// + ///The time at which the injection will happen. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextUpdate; + + /// + ///The delay between each injection in seconds. + /// + [DataField] + public TimeSpan UpdateInterval = TimeSpan.FromSeconds(3); +} + diff --git a/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs index d56fded024..f15edcf067 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Body.Components; using Content.Server.Body.Systems; using Content.Server.Chemistry.Components; using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Events; using Content.Shared.Inventory; using Content.Shared.Popups; using Content.Shared.Projectiles; @@ -29,6 +30,7 @@ public sealed class SolutionInjectOnCollideSystem : EntitySystem SubscribeLocalEvent(HandleProjectileHit); SubscribeLocalEvent(HandleEmbed); SubscribeLocalEvent(HandleMeleeHit); + SubscribeLocalEvent(OnInjectOverTime); } private void HandleProjectileHit(Entity entity, ref ProjectileHitEvent args) @@ -49,6 +51,11 @@ public sealed class SolutionInjectOnCollideSystem : EntitySystem TryInjectTargets((entity.Owner, entity.Comp), args.HitEntities, args.User); } + private void OnInjectOverTime(Entity entity, ref InjectOverTimeEvent args) + { + DoInjection((entity.Owner, entity.Comp), args.EmbeddedIntoUid); + } + private void DoInjection(Entity injectorEntity, EntityUid target, EntityUid? source = null) { TryInjectTargets(injectorEntity, [target], source); diff --git a/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs new file mode 100644 index 0000000000..2baeba9da1 --- /dev/null +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs @@ -0,0 +1,60 @@ +using Content.Server.Body.Components; +using Content.Server.Body.Systems; +using Content.Server.Chemistry.Components; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Events; +using Content.Shared.Inventory; +using Content.Shared.Popups; +using Content.Shared.Projectiles; +using Content.Shared.Tag; +using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Collections; +using Robust.Shared.Timing; + +namespace Content.Server.Chemistry.EntitySystems; + +/// +/// System for handling injecting into an entity while a projectile is embedded. +/// +public sealed class SolutionInjectWhileEmbeddedSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly BloodstreamSystem _bloodstream = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly TagSystem _tag = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextUpdate = _gameTiming.CurTime + ent.Comp.UpdateInterval; + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var injectComponent, out var projectileComponent)) + { + if (_gameTiming.CurTime < injectComponent.NextUpdate) + continue; + + injectComponent.NextUpdate += injectComponent.UpdateInterval; + + if(projectileComponent.EmbeddedIntoUid == null) + continue; + + var ev = new InjectOverTimeEvent(projectileComponent.EmbeddedIntoUid.Value); + RaiseLocalEvent(uid, ref ev); + + } + } +} diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index b750c13e21..c85b774e38 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -875,10 +875,41 @@ INSERT INTO player_round (players_id, rounds_id) VALUES ({players[player]}, {id} public async Task AddAdminLogs(List logs) { + const int maxRetryAttempts = 5; + var initialRetryDelay = TimeSpan.FromSeconds(5); + DebugTools.Assert(logs.All(x => x.RoundId > 0), "Adding logs with invalid round ids."); - await using var db = await GetDb(); - db.DbContext.AdminLog.AddRange(logs); - await db.DbContext.SaveChangesAsync(); + + var attempt = 0; + var retryDelay = initialRetryDelay; + + while (attempt < maxRetryAttempts) + { + try + { + await using var db = await GetDb(); + db.DbContext.AdminLog.AddRange(logs); + await db.DbContext.SaveChangesAsync(); + _opsLog.Debug($"Successfully saved {logs.Count} admin logs."); + break; + } + catch (Exception ex) + { + attempt += 1; + _opsLog.Error($"Attempt {attempt} failed to save logs: {ex}"); + + if (attempt >= maxRetryAttempts) + { + _opsLog.Error($"Max retry attempts reached. Failed to save {logs.Count} admin logs."); + return; + } + + _opsLog.Warning($"Retrying in {retryDelay.TotalSeconds} seconds..."); + await Task.Delay(retryDelay); + + retryDelay *= 2; + } + } } protected abstract IQueryable StartAdminLogsQuery(ServerDbContext db, LogFilter? filter = null); diff --git a/Content.Server/EntityEffects/EffectConditions/JobCondition.cs b/Content.Server/EntityEffects/EffectConditions/JobCondition.cs index 9c7bda839e..9621d6945f 100644 --- a/Content.Server/EntityEffects/EffectConditions/JobCondition.cs +++ b/Content.Server/EntityEffects/EffectConditions/JobCondition.cs @@ -26,9 +26,17 @@ public sealed partial class JobCondition : EntityEffectCondition if(!args.EntityManager.HasComponent(roleId)) continue; - if(!args.EntityManager.TryGetComponent(roleId, out var mindRole) - || mindRole.JobPrototype is null) + if (!args.EntityManager.TryGetComponent(roleId, out var mindRole)) + { + Logger.Error($"Encountered job mind role entity {roleId} without a {nameof(MindRoleComponent)}"); continue; + } + + if (mindRole.JobPrototype == null) + { + Logger.Error($"Encountered job mind role entity {roleId} without a {nameof(JobPrototype)}"); + continue; + } if (Job.Contains(mindRole.JobPrototype.Value)) return true; diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index e544870bd2..a7dd5d6ab6 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -192,9 +192,6 @@ namespace Content.Server.GameTicking if (!_playerManager.TryGetSessionById(userId, out _)) continue; - if (_banManager.GetRoleBans(userId) == null) - continue; - total++; } @@ -238,11 +235,7 @@ namespace Content.Server.GameTicking #if DEBUG DebugTools.Assert(_userDb.IsLoadComplete(session), $"Player was readied up but didn't have user DB data loaded yet??"); #endif - if (_banManager.GetRoleBans(userId) == null) - { - Logger.ErrorS("RoleBans", $"Role bans for player {session} {userId} have not been loaded yet."); - continue; - } + readyPlayers.Add(session); HumanoidCharacterProfile profile; if (_prefsManager.TryGetCachedPreferences(userId, out var preferences)) diff --git a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs index 62f92963aa..6f82aa042f 100644 --- a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Dataset; +using Content.Shared.FixedPoint; using Content.Shared.NPC.Prototypes; using Content.Shared.Random; using Content.Shared.Roles; @@ -31,6 +32,24 @@ public sealed partial class TraitorRuleComponent : Component [DataField] public ProtoId ObjectiveIssuers = "TraitorCorporations"; + /// + /// Give this traitor an Uplink on spawn. + /// + [DataField] + public bool GiveUplink = true; + + /// + /// Give this traitor the codewords. + /// + [DataField] + public bool GiveCodewords = true; + + /// + /// Give this traitor a briefing in chat. + /// + [DataField] + public bool GiveBriefing = true; + public int TotalTraitors => TraitorMinds.Count; public string[] Codewords = new string[3]; @@ -68,5 +87,5 @@ public sealed partial class TraitorRuleComponent : Component /// The amount of TC traitors start with. /// [DataField] - public int StartingBalance = 20; + public FixedPoint2 StartingBalance = 20; } diff --git a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs index 939ab87115..a313b78eaf 100644 --- a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs @@ -155,8 +155,8 @@ public sealed class RevolutionaryRuleSystem : GameRuleSystem(revMindId, out _, out var role)) - role.Value.Comp.ConvertedCount++; + if (_role.MindHasRole(revMindId, out var role)) + role.Value.Comp2.ConvertedCount++; } } diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 44ad00ae17..1987613763 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -7,6 +7,7 @@ using Content.Server.PDA.Ringer; using Content.Server.Roles; using Content.Server.Traitor.Uplink; using Content.Shared.Database; +using Content.Shared.FixedPoint; using Content.Shared.GameTicking.Components; using Content.Shared.Mind; using Content.Shared.NPC.Systems; @@ -75,38 +76,46 @@ public sealed class TraitorRuleSystem : GameRuleSystem return codewords; } - public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component, bool giveUplink = true) + public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component) { //Grab the mind if it wasn't provided if (!_mindSystem.TryGetMind(traitor, out var mindId, out var mind)) return false; - var briefing = Loc.GetString("traitor-role-codewords-short", ("codewords", string.Join(", ", component.Codewords))); + var briefing = ""; + + if (component.GiveCodewords) + briefing = Loc.GetString("traitor-role-codewords-short", ("codewords", string.Join(", ", component.Codewords))); + var issuer = _random.Pick(_prototypeManager.Index(component.ObjectiveIssuers).Values); + // Uplink code will go here if applicable, but we still need the variable if there aren't any Note[]? code = null; - if (giveUplink) + + if (component.GiveUplink) { // Calculate the amount of currency on the uplink. var startingBalance = component.StartingBalance; if (_jobs.MindTryGetJob(mindId, out var prototype)) - startingBalance = Math.Max(startingBalance - prototype.AntagAdvantage, 0); + { + if (startingBalance < prototype.AntagAdvantage) // Can't use Math functions on FixedPoint2 + startingBalance = 0; + else + startingBalance = startingBalance - prototype.AntagAdvantage; + } - // creadth: we need to create uplink for the antag. - // PDA should be in place already - var pda = _uplink.FindUplinkTarget(traitor); - if (pda == null || !_uplink.AddUplink(traitor, startingBalance, giveDiscounts: true)) - return false; - - // Give traitors their codewords and uplink code to keep in their character info menu - code = EnsureComp(pda.Value).Code; - - // If giveUplink is false the uplink code part is omitted - briefing = string.Format("{0}\n{1}", briefing, - Loc.GetString("traitor-role-uplink-code-short", ("code", string.Join("-", code).Replace("sharp", "#")))); + // Choose and generate an Uplink, and return the uplink code if applicable + var uplinkParams = RequestUplink(traitor, startingBalance, briefing); + code = uplinkParams.Item1; + briefing = uplinkParams.Item2; } - _antag.SendBriefing(traitor, GenerateBriefing(component.Codewords, code, issuer), null, component.GreetSoundNotification); + string[]? codewords = null; + if (component.GiveCodewords) + codewords = component.Codewords; + + if (component.GiveBriefing) + _antag.SendBriefing(traitor, GenerateBriefing(codewords, code, issuer), null, component.GreetSoundNotification); component.TraitorMinds.Add(mindId); @@ -134,6 +143,32 @@ public sealed class TraitorRuleSystem : GameRuleSystem return true; } + private (Note[]?, string) RequestUplink(EntityUid traitor, FixedPoint2 startingBalance, string briefing) + { + var pda = _uplink.FindUplinkTarget(traitor); + Note[]? code = null; + + var uplinked = _uplink.AddUplink(traitor, startingBalance, pda, true); + + if (pda is not null && uplinked) + { + // Codes are only generated if the uplink is a PDA + code = EnsureComp(pda.Value).Code; + + // If giveUplink is false the uplink code part is omitted + briefing = string.Format("{0}\n{1}", + briefing, + Loc.GetString("traitor-role-uplink-code-short", ("code", string.Join("-", code).Replace("sharp", "#")))); + return (code, briefing); + } + else if (pda is null && uplinked) + { + briefing += "\n" + Loc.GetString("traitor-role-uplink-implant-short"); + } + + return (null, briefing); + } + // TODO: AntagCodewordsComponent private void OnObjectivesTextPrepend(EntityUid uid, TraitorRuleComponent comp, ref ObjectivesTextPrependEvent args) { @@ -141,13 +176,17 @@ public sealed class TraitorRuleSystem : GameRuleSystem } // TODO: figure out how to handle this? add priority to briefing event? - private string GenerateBriefing(string[] codewords, Note[]? uplinkCode, string? objectiveIssuer = null) + private string GenerateBriefing(string[]? codewords, Note[]? uplinkCode, string? objectiveIssuer = null) { var sb = new StringBuilder(); sb.AppendLine(Loc.GetString("traitor-role-greeting", ("corporation", objectiveIssuer ?? Loc.GetString("objective-issuer-unknown")))); - sb.AppendLine(Loc.GetString("traitor-role-codewords", ("codewords", string.Join(", ", codewords)))); + if (codewords != null) + sb.AppendLine(Loc.GetString("traitor-role-codewords", ("codewords", string.Join(", ", codewords)))); if (uplinkCode != null) sb.AppendLine(Loc.GetString("traitor-role-uplink-code", ("code", string.Join("-", uplinkCode).Replace("sharp", "#")))); + else + sb.AppendLine(Loc.GetString("traitor-role-uplink-implant")); + return sb.ToString(); } diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index bb95b827a7..cd01c964ef 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -516,8 +516,8 @@ public sealed class GhostRoleSystem : EntitySystem _roleSystem.MindAddRole(newMind, "MindRoleGhostMarker"); - if(_roleSystem.MindHasRole(newMind, out _, out var markerRole)) - markerRole.Value.Comp.Name = role.RoleName; + if(_roleSystem.MindHasRole(newMind!, out var markerRole)) + markerRole.Value.Comp2.Name = role.RoleName; _mindSystem.SetUserId(newMind, player.UserId); _mindSystem.TransferTo(newMind, mob); diff --git a/Content.Server/Holosign/HolosignSystem.cs b/Content.Server/Holosign/HolosignSystem.cs index a36603b01d..b63a545989 100644 --- a/Content.Server/Holosign/HolosignSystem.cs +++ b/Content.Server/Holosign/HolosignSystem.cs @@ -45,7 +45,7 @@ public sealed class HolosignSystem : EntitySystem if (args.Handled || !args.CanReach // prevent placing out of range || HasComp(args.Target) // if it's a storage component like a bag, we ignore usage so it can be stored - || !_powerCell.TryUseCharge(uid, component.ChargeUse) // if no battery or no charge, doesn't work + || !_powerCell.TryUseCharge(uid, component.ChargeUse, user: args.User) // if no battery or no charge, doesn't work ) return; diff --git a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs index 244b7adf03..20674dda87 100644 --- a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs +++ b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs @@ -22,6 +22,9 @@ public sealed class NinjaSuitSystem : SharedNinjaSuitSystem [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + // How much the cell score should be increased per 1 AutoRechargeRate. + private const int AutoRechargeValue = 100; + public override void Initialize() { base.Initialize(); @@ -59,15 +62,26 @@ public sealed class NinjaSuitSystem : SharedNinjaSuitSystem return; // no power cell for some reason??? allow it - if (!_powerCell.TryGetBatteryFromSlot(uid, out var battery)) + if (!_powerCell.TryGetBatteryFromSlot(uid, out var batteryUid, out var battery)) return; - // can only upgrade power cell, not swap to recharge instantly otherwise ninja could just swap batteries with flashlights in maints for easy power - if (!TryComp(args.EntityUid, out var inserting) || inserting.MaxCharge <= battery.MaxCharge) + if (!TryComp(args.EntityUid, out var inserting)) + { args.Cancel(); + return; + } + + var user = Transform(uid).ParentUid; + + // can only upgrade power cell, not swap to recharge instantly otherwise ninja could just swap batteries with flashlights in maints for easy power + if (GetCellScore(inserting.Owner, inserting) <= GetCellScore(battery.Owner, battery)) + { + args.Cancel(); + Popup.PopupEntity(Loc.GetString("ninja-cell-downgrade"), user, user); + return; + } // tell ninja abilities that use battery to update it so they don't use charge from the old one - var user = Transform(uid).ParentUid; if (!_ninja.IsNinja(user)) return; @@ -76,6 +90,16 @@ public sealed class NinjaSuitSystem : SharedNinjaSuitSystem RaiseLocalEvent(user, ref ev); } + // this function assigns a score to a power cell depending on the capacity, to be used when comparing which cell is better. + private float GetCellScore(EntityUid uid, BatteryComponent battcomp) + { + // if a cell is able to automatically recharge, boost the score drastically depending on the recharge rate, + // this is to ensure a ninja can still upgrade to a micro reactor cell even if they already have a medium or high. + if (TryComp(uid, out var selfcomp) && selfcomp.AutoRecharge) + return battcomp.MaxCharge + (selfcomp.AutoRechargeRate*AutoRechargeValue); + return battcomp.MaxCharge; + } + private void OnEmpAttempt(EntityUid uid, NinjaSuitComponent comp, EmpAttemptEvent args) { // ninja suit (battery) is immune to emp diff --git a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs index c916d568d5..6594d7883b 100644 --- a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -1,14 +1,12 @@ using Content.Server.Explosion.EntitySystems; -using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; using Content.Server.Objectives.Components; using Content.Server.Popups; using Content.Server.Roles; -using Content.Shared.Interaction; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; +using Content.Shared.Roles; using Content.Shared.Sticky; -using Robust.Shared.GameObjects; namespace Content.Server.Ninja.Systems; @@ -19,6 +17,7 @@ public sealed class SpiderChargeSystem : SharedSpiderChargeSystem { [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly SharedRoleSystem _role = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SpaceNinjaSystem _ninja = default!; @@ -41,7 +40,10 @@ public sealed class SpiderChargeSystem : SharedSpiderChargeSystem var user = args.User; - if (!_mind.TryGetRole(user, out var _)) + if (!_mind.TryGetMind(args.User, out var mind, out _)) + return; + + if (!_role.MindHasRole(mind)) { _popup.PopupEntity(Loc.GetString("spider-charge-not-ninja"), user, user); args.Cancelled = true; diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index f04d79b47d..90a925e39f 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -317,7 +317,7 @@ public sealed class DrinkSystem : SharedDrinkSystem _adminLogger.Add(LogType.Ingestion, LogImpact.Low, $"{ToPrettyString(args.User):target} drank {ToPrettyString(entity.Owner):drink}"); } - _audio.PlayPvs(entity.Comp.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-2f)); + _audio.PlayPvs(entity.Comp.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-2f).WithVariation(0.25f)); _reaction.DoEntityReaction(args.Target.Value, solution, ReactionMethod.Ingestion); _stomach.TryTransferSolution(firstStomach.Value.Owner, drained, firstStomach.Value.Comp1); diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index d7daf632d6..158c7f4955 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -296,7 +296,7 @@ public sealed class FoodSystem : EntitySystem _adminLogger.Add(LogType.Ingestion, LogImpact.Low, $"{ToPrettyString(args.User):target} ate {ToPrettyString(entity.Owner):food}"); } - _audio.PlayPvs(entity.Comp.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-1f)); + _audio.PlayPvs(entity.Comp.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-1f).WithVariation(0.20f)); // Try to break all used utensils foreach (var utensil in utensils) diff --git a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs index b4de15f2b9..8dcbf191b3 100644 --- a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs +++ b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs @@ -1,9 +1,9 @@ using Content.Server.Objectives.Components; +using Content.Server.Revolutionary.Components; using Content.Server.Shuttles.Systems; using Content.Shared.CCVar; using Content.Shared.Mind; using Content.Shared.Objectives.Components; -using Content.Shared.Roles.Jobs; using Robust.Shared.Configuration; using Robust.Shared.Random; @@ -17,7 +17,6 @@ public sealed class KillPersonConditionSystem : EntitySystem [Dependency] private readonly EmergencyShuttleSystem _emergencyShuttle = default!; [Dependency] private readonly IConfigurationManager _config = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly SharedJobSystem _job = default!; [Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly TargetObjectiveSystem _target = default!; @@ -86,11 +85,10 @@ public sealed class KillPersonConditionSystem : EntitySystem } var allHeads = new List(); - foreach (var mind in allHumans) + foreach (var person in allHumans) { - // RequireAdminNotify used as a cheap way to check for command department - if (_job.MindTryGetJob(mind, out var prototype) && prototype.RequireAdminNotify) - allHeads.Add(mind); + if (TryComp(person, out var mind) && mind.OwnedEntity is { } ent && HasComp(ent)) + allHeads.Add(person); } if (allHeads.Count == 0) diff --git a/Content.Server/Objectives/Systems/NotCommandRequirementSystem.cs b/Content.Server/Objectives/Systems/NotCommandRequirementSystem.cs index 50d747c1a2..0808dc5bcf 100644 --- a/Content.Server/Objectives/Systems/NotCommandRequirementSystem.cs +++ b/Content.Server/Objectives/Systems/NotCommandRequirementSystem.cs @@ -1,13 +1,11 @@ using Content.Server.Objectives.Components; +using Content.Server.Revolutionary.Components; using Content.Shared.Objectives.Components; -using Content.Shared.Roles.Jobs; namespace Content.Server.Objectives.Systems; public sealed class NotCommandRequirementSystem : EntitySystem { - [Dependency] private readonly SharedJobSystem _job = default!; - public override void Initialize() { base.Initialize(); @@ -20,8 +18,7 @@ public sealed class NotCommandRequirementSystem : EntitySystem if (args.Cancelled) return; - // cheap equivalent to checking that job department is command, since all command members require admin notification when leaving - if (_job.MindTryGetJob(args.MindId, out var prototype) && prototype.RequireAdminNotify) + if (args.Mind.OwnedEntity is { } ent && HasComp(ent)) args.Cancelled = true; } } diff --git a/Content.Server/Power/Components/ApcComponent.cs b/Content.Server/Power/Components/ApcComponent.cs index bee8defc43..0bf9bc1872 100644 --- a/Content.Server/Power/Components/ApcComponent.cs +++ b/Content.Server/Power/Components/ApcComponent.cs @@ -25,9 +25,6 @@ public sealed partial class ApcComponent : BaseApcNetComponent [DataField("enabled")] public bool MainBreakerEnabled = true; - // TODO: remove this since it probably breaks when 2 people use it - [DataField("hasAccess")] - public bool HasAccess = false; /// /// APC state needs to always be updated after first processing tick. diff --git a/Content.Server/Power/EntitySystems/ApcSystem.cs b/Content.Server/Power/EntitySystems/ApcSystem.cs index 52c19c302c..14dddbb43e 100644 --- a/Content.Server/Power/EntitySystems/ApcSystem.cs +++ b/Content.Server/Power/EntitySystems/ApcSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Emp; using Content.Server.Popups; using Content.Server.Power.Components; using Content.Server.Power.Pow3r; -using Content.Shared.Access.Components; using Content.Shared.Access.Systems; using Content.Shared.APC; using Content.Shared.Emag.Components; @@ -71,11 +70,8 @@ public sealed class ApcSystem : EntitySystem component.NeedStateUpdate = true; } - //Update the HasAccess var for UI to read private void OnBoundUiOpen(EntityUid uid, ApcComponent component, BoundUIOpenedEvent args) { - // TODO: this should be per-player not stored on the apc - component.HasAccess = _accessReader.IsAllowed(args.Actor, uid); UpdateApcState(uid, component); } @@ -165,7 +161,7 @@ public sealed class ApcSystem : EntitySystem // TODO: Fix ContentHelpers or make a new one coz this is cooked. var charge = ContentHelpers.RoundToNearestLevels(battery.CurrentStorage / battery.Capacity, 1.0, 100 / ChargeAccuracy) / 100f * ChargeAccuracy; - var state = new ApcBoundInterfaceState(apc.MainBreakerEnabled, apc.HasAccess, + var state = new ApcBoundInterfaceState(apc.MainBreakerEnabled, (int) MathF.Ceiling(battery.CurrentSupply), apc.LastExternalState, charge); diff --git a/Content.Server/Revolutionary/Components/CommandStaffComponent.cs b/Content.Server/Revolutionary/Components/CommandStaffComponent.cs index dc16b87300..79349b25da 100644 --- a/Content.Server/Revolutionary/Components/CommandStaffComponent.cs +++ b/Content.Server/Revolutionary/Components/CommandStaffComponent.cs @@ -1,11 +1,9 @@ -using Content.Server.GameTicking.Rules; - namespace Content.Server.Revolutionary.Components; /// -/// Given to heads at round start for Revs. Used for tracking if heads died or not. +/// Given to heads at round start. Used for assigning traitors to kill heads and for revs to check if the heads died or not. /// -[RegisterComponent, Access(typeof(RevolutionaryRuleSystem))] +[RegisterComponent] public sealed partial class CommandStaffComponent : Component { diff --git a/Content.Server/ServerUpdates/ServerUpdateManager.cs b/Content.Server/ServerUpdates/ServerUpdateManager.cs index f4e54984e9..bf18428e25 100644 --- a/Content.Server/ServerUpdates/ServerUpdateManager.cs +++ b/Content.Server/ServerUpdates/ServerUpdateManager.cs @@ -12,9 +12,13 @@ using Robust.Shared.Timing; namespace Content.Server.ServerUpdates; /// -/// Responsible for restarting the server for update, when not disruptive. +/// Responsible for restarting the server periodically or for update, when not disruptive. /// -public sealed class ServerUpdateManager +/// +/// This was originally only designed for restarting on *update*, +/// but now also handles periodic restarting to keep server uptime via . +/// +public sealed class ServerUpdateManager : IPostInjectInit { [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IWatchdogApi _watchdog = default!; @@ -22,23 +26,43 @@ public sealed class ServerUpdateManager [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IBaseServer _server = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly ILogManager _logManager = default!; + + private ISawmill _sawmill = default!; [ViewVariables] private bool _updateOnRoundEnd; private TimeSpan? _restartTime; + private TimeSpan _uptimeRestart; + public void Initialize() { _watchdog.UpdateReceived += WatchdogOnUpdateReceived; _playerManager.PlayerStatusChanged += PlayerManagerOnPlayerStatusChanged; + + _cfg.OnValueChanged( + CCVars.ServerUptimeRestartMinutes, + minutes => _uptimeRestart = TimeSpan.FromMinutes(minutes), + true); } public void Update() { - if (_restartTime != null && _restartTime < _gameTiming.RealTime) + if (_restartTime != null) { - DoShutdown(); + if (_restartTime < _gameTiming.RealTime) + { + DoShutdown(); + } + } + else + { + if (ShouldShutdownDueToUptime()) + { + ServerEmptyUpdateRestartCheck("uptime"); + } } } @@ -48,7 +72,7 @@ public sealed class ServerUpdateManager /// True if the server is going to restart. public bool RoundEnded() { - if (_updateOnRoundEnd) + if (_updateOnRoundEnd || ShouldShutdownDueToUptime()) { DoShutdown(); return true; @@ -61,11 +85,14 @@ public sealed class ServerUpdateManager { switch (e.NewStatus) { - case SessionStatus.Connecting: + case SessionStatus.Connected: + if (_restartTime != null) + _sawmill.Debug("Aborting server restart timer due to player connection"); + _restartTime = null; break; case SessionStatus.Disconnected: - ServerEmptyUpdateRestartCheck(); + ServerEmptyUpdateRestartCheck("last player disconnect"); break; } } @@ -74,20 +101,20 @@ public sealed class ServerUpdateManager { _chatManager.DispatchServerAnnouncement(Loc.GetString("server-updates-received")); _updateOnRoundEnd = true; - ServerEmptyUpdateRestartCheck(); + ServerEmptyUpdateRestartCheck("update notification"); } /// /// Checks whether there are still players on the server, /// and if not starts a timer to automatically reboot the server if an update is available. /// - private void ServerEmptyUpdateRestartCheck() + private void ServerEmptyUpdateRestartCheck(string reason) { // Can't simple check the current connected player count since that doesn't update // before PlayerStatusChanged gets fired. // So in the disconnect handler we'd still see a single player otherwise. var playersOnline = _playerManager.Sessions.Any(p => p.Status != SessionStatus.Disconnected); - if (playersOnline || !_updateOnRoundEnd) + if (playersOnline || !(_updateOnRoundEnd || ShouldShutdownDueToUptime())) { // Still somebody online. return; @@ -95,16 +122,30 @@ public sealed class ServerUpdateManager if (_restartTime != null) { - // Do nothing because I guess we already have a timer running..? + // Do nothing because we already have a timer running. return; } var restartDelay = TimeSpan.FromSeconds(_cfg.GetCVar(CCVars.UpdateRestartDelay)); _restartTime = restartDelay + _gameTiming.RealTime; + + _sawmill.Debug("Started server-empty restart timer due to {Reason}", reason); } private void DoShutdown() { - _server.Shutdown(Loc.GetString("server-updates-shutdown")); + _sawmill.Debug($"Shutting down via {nameof(ServerUpdateManager)}!"); + var reason = _updateOnRoundEnd ? "server-updates-shutdown" : "server-updates-shutdown-uptime"; + _server.Shutdown(Loc.GetString(reason)); + } + + private bool ShouldShutdownDueToUptime() + { + return _uptimeRestart != TimeSpan.Zero && _gameTiming.RealTime > _uptimeRestart; + } + + void IPostInjectInit.PostInject() + { + _sawmill = _logManager.GetSawmill("restart"); } } diff --git a/Content.Server/Shuttles/Commands/FTLDiskCommand.cs b/Content.Server/Shuttles/Commands/FTLDiskCommand.cs new file mode 100644 index 0000000000..b17c7c11a7 --- /dev/null +++ b/Content.Server/Shuttles/Commands/FTLDiskCommand.cs @@ -0,0 +1,183 @@ +using Content.Server.Administration; +using Content.Server.Labels; +using Content.Shared.Administration; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Shuttles.Components; +using Content.Shared.Storage; +using Content.Shared.Storage.EntitySystems; +using Robust.Shared.Console; +using Robust.Shared.Map.Components; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Server.Shuttles.Commands; + +/// +/// Creates FTL disks, to maps, grids, or entities. +/// +[AdminCommand(AdminFlags.Fun)] + +public sealed class FTLDiskCommand : LocalizedCommands +{ + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IEntitySystemManager _entSystemManager = default!; + + public override string Command => "ftldisk"; + + [ValidatePrototypeId] + public const string CoordinatesDisk = "CoordinatesDisk"; + + [ValidatePrototypeId] + public const string DiskCase = "DiskCase"; + public override void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length == 0) + { + shell.WriteError(Loc.GetString("shell-need-minimum-one-argument")); + return; + } + + var player = shell.Player; + + if (player == null) + { + shell.WriteLine(Loc.GetString("shell-only-players-can-run-this-command")); + return; + } + + if (player.AttachedEntity == null) + { + shell.WriteLine(Loc.GetString("shell-must-be-attached-to-entity")); + return; + } + + EntityUid entity = player.AttachedEntity.Value; + var coords = _entManager.GetComponent(entity).Coordinates; + + var handsSystem = _entSystemManager.GetEntitySystem(); + var labelSystem = _entSystemManager.GetEntitySystem(); + var mapSystem = _entSystemManager.GetEntitySystem(); + var storageSystem = _entSystemManager.GetEntitySystem(); + + foreach (var destinations in args) + { + DebugTools.AssertNotNull(destinations); + + // make sure destination is an id. + EntityUid dest; + + if (_entManager.TryParseNetEntity(destinations, out var nullableDest)) + { + DebugTools.AssertNotNull(nullableDest); + + dest = (EntityUid) nullableDest; + + // we need to go to a map, so check if the EntID is something else then try for its map + if (!_entManager.HasComponent(dest)) + { + if (!_entManager.TryGetComponent(dest, out var entTransform)) + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-no-transform", ("destination", destinations))); + continue; + } + + if (!mapSystem.TryGetMap(entTransform.MapID, out var mapDest)) + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-no-map", ("destination", destinations))); + continue; + } + + DebugTools.AssertNotNull(mapDest); + dest = mapDest!.Value; // explicit cast here should be fine since the previous if should catch it. + } + + // find and verify the map is not somehow unusable. + if (!_entManager.TryGetComponent(dest, out var mapComp)) // We have to check for a MapComponent here and above since we could have changed our dest entity. + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-no-map-comp", ("destination", destinations), ("map", dest))); + continue; + } + if (mapComp.MapInitialized == false) + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-map-not-init", ("destination", destinations), ("map", dest))); + continue; + } + if (mapComp.MapPaused == true) + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-map-paused", ("destination", destinations), ("map", dest))); + continue; + } + + // check if our destination works already, if not, make it. + if (!_entManager.TryGetComponent(dest, out var ftlDestComp)) + { + FTLDestinationComponent ftlDest = _entManager.AddComponent(dest); + ftlDest.RequireCoordinateDisk = true; + + if (_entManager.HasComponent(dest)) + { + ftlDest.BeaconsOnly = true; + + shell.WriteLine(Loc.GetString("cmd-ftldisk-planet", ("destination", destinations), ("map", dest))); + } + } + else + { + // we don't do these automatically, since it isn't clear what the correct resolution is. Instead we provide feedback to the user and carry on like they know what theyre doing. + if (ftlDestComp.Enabled == false) + shell.WriteLine(Loc.GetString("cmd-ftldisk-already-dest-not-enabled", ("destination", destinations), ("map", dest))); + + if (ftlDestComp.BeaconsOnly == true) + shell.WriteLine(Loc.GetString("cmd-ftldisk-requires-ftl-point", ("destination", destinations), ("map", dest))); + } + + // create the FTL disk + EntityUid cdUid = _entManager.SpawnEntity(CoordinatesDisk, coords); + var cd = _entManager.EnsureComponent(cdUid); + cd.Destination = dest; + _entManager.Dirty(cdUid, cd); + + // create disk case + EntityUid cdCaseUid = _entManager.SpawnEntity(DiskCase, coords); + + // apply labels + if (_entManager.TryGetComponent(dest, out var meta) && meta != null && meta.EntityName != null) + { + labelSystem.Label(cdUid, meta.EntityName); + labelSystem.Label(cdCaseUid, meta.EntityName); + } + + // if the case has a storage, try to place the disk in there and then the case inhand + + if (_entManager.TryGetComponent(cdCaseUid, out var storage) && storageSystem.Insert(cdCaseUid, cdUid, out _, storageComp: storage, playSound: false)) + { + if (_entManager.TryGetComponent(entity, out var handsComponent) && handsSystem.TryGetEmptyHand(entity, out var emptyHand, handsComponent)) + { + handsSystem.TryPickup(entity, cdCaseUid, emptyHand, checkActionBlocker: false, handsComp: handsComponent); + } + } + else // the case was messed up, put disk inhand + { + _entManager.DeleteEntity(cdCaseUid); // something went wrong so just yeet the chaf + + if (_entManager.TryGetComponent(entity, out var handsComponent) && handsSystem.TryGetEmptyHand(entity, out var emptyHand, handsComponent)) + { + handsSystem.TryPickup(entity, cdUid, emptyHand, checkActionBlocker: false, handsComp: handsComponent); + } + } + } + else + { + shell.WriteLine(Loc.GetString("shell-invalid-entity-uid", ("uid", destinations))); + } + } + } + + public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) + { + if (args.Length >= 1) + return CompletionResult.FromHintOptions(CompletionHelper.MapUids(_entManager), Loc.GetString("cmd-ftldisk-hint")); + return CompletionResult.Empty; + } +} diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index f289752b7c..d5a429db03 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -60,6 +60,10 @@ public sealed partial class BorgSystem if (_actions.AddAction(chassis, ref component.ModuleSwapActionEntity, out var action, component.ModuleSwapActionId, uid)) { + if(TryComp(uid, out var moduleIconComp)) + { + action.Icon = moduleIconComp.Icon; + }; action.EntityIcon = uid; Dirty(component.ModuleSwapActionEntity.Value, action); } diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index 07674352ec..0070beb6ef 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -293,6 +293,8 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem while (query.MoveNext(out var update)) { SetLaws(lawset, update); + if (provider.LawUploadSound != null && _mind.TryGetMind(update, out var mindId, out _)) + _roles.MindPlaySound(mindId, provider.LawUploadSound); } } } diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 2f58f96773..5ae7755641 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -131,7 +131,7 @@ public sealed class TemperatureSystem : EntitySystem TemperatureComponent? temperature = null) { //CrystallPunk may try place on heater and entity, and solutions - //if (!Resolve(uid, ref temperature)) + //if (!Resolve(uid, ref temperature, false)) // return; if (temperature == null) return; @@ -315,7 +315,7 @@ public sealed class TemperatureSystem : EntitySystem private void ChangeTemperatureOnCollide(Entity ent, ref ProjectileHitEvent args) { - _temperature.ChangeHeat(args.Target, ent.Comp.Heat, ent.Comp.IgnoreHeatResistance);// adjust the temperature + _temperature.ChangeHeat(args.Target, ent.Comp.Heat, ent.Comp.IgnoreHeatResistance);// adjust the temperature } private void OnParentChange(EntityUid uid, TemperatureComponent component, diff --git a/Content.Server/Traitor/Components/AutoTraitorComponent.cs b/Content.Server/Traitor/Components/AutoTraitorComponent.cs index ab4bee2f26..a4710afd8e 100644 --- a/Content.Server/Traitor/Components/AutoTraitorComponent.cs +++ b/Content.Server/Traitor/Components/AutoTraitorComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Traitor.Systems; +using Robust.Shared.Prototypes; namespace Content.Server.Traitor.Components; @@ -9,14 +10,8 @@ namespace Content.Server.Traitor.Components; public sealed partial class AutoTraitorComponent : Component { /// - /// Whether to give the traitor an uplink or not. + /// The traitor profile to use /// - [DataField("giveUplink"), ViewVariables(VVAccess.ReadWrite)] - public bool GiveUplink = true; - - /// - /// Whether to give the traitor objectives or not. - /// - [DataField("giveObjectives"), ViewVariables(VVAccess.ReadWrite)] - public bool GiveObjectives = true; + [DataField] + public EntProtoId Profile = "Traitor"; } diff --git a/Content.Server/Traitor/Systems/AutoTraitorSystem.cs b/Content.Server/Traitor/Systems/AutoTraitorSystem.cs index e9307effbc..d5a4db591a 100644 --- a/Content.Server/Traitor/Systems/AutoTraitorSystem.cs +++ b/Content.Server/Traitor/Systems/AutoTraitorSystem.cs @@ -12,9 +12,6 @@ public sealed class AutoTraitorSystem : EntitySystem { [Dependency] private readonly AntagSelectionSystem _antag = default!; - [ValidatePrototypeId] - private const string DefaultTraitorRule = "Traitor"; - public override void Initialize() { base.Initialize(); @@ -24,6 +21,6 @@ public sealed class AutoTraitorSystem : EntitySystem private void OnMindAdded(EntityUid uid, AutoTraitorComponent comp, MindAddedMessage args) { - _antag.ForceMakeAntag(args.Mind.Comp.Session, DefaultTraitorRule); + _antag.ForceMakeAntag(args.Mind.Comp.Session, comp.Profile); } } diff --git a/Content.Server/Traitor/Uplink/UplinkSystem.cs b/Content.Server/Traitor/Uplink/UplinkSystem.cs index ae809dc4d7..4c0a990b14 100644 --- a/Content.Server/Traitor/Uplink/UplinkSystem.cs +++ b/Content.Server/Traitor/Uplink/UplinkSystem.cs @@ -1,97 +1,136 @@ using System.Linq; using Content.Server.Store.Systems; using Content.Server.StoreDiscount.Systems; +using Content.Shared.FixedPoint; using Content.Shared.Hands.EntitySystems; +using Content.Shared.Implants; using Content.Shared.Inventory; using Content.Shared.PDA; -using Content.Shared.FixedPoint; using Content.Shared.Store; using Content.Shared.Store.Components; +using Robust.Shared.Prototypes; -namespace Content.Server.Traitor.Uplink +namespace Content.Server.Traitor.Uplink; + +public sealed class UplinkSystem : EntitySystem { - public sealed class UplinkSystem : EntitySystem + [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly StoreSystem _store = default!; + [Dependency] private readonly SharedSubdermalImplantSystem _subdermalImplant = default!; + + [ValidatePrototypeId] + public const string TelecrystalCurrencyPrototype = "Telecrystal"; + private const string FallbackUplinkImplant = "UplinkImplant"; + private const string FallbackUplinkCatalog = "UplinkUplinkImplanter"; + + /// + /// Adds an uplink to the target + /// + /// The person who is getting the uplink + /// The amount of currency on the uplink. If null, will just use the amount specified in the preset. + /// The entity that will actually have the uplink functionality. Defaults to the PDA if null. + /// Marker that enables discounts for uplink items. + /// Whether or not the uplink was added successfully + public bool AddUplink( + EntityUid user, + FixedPoint2 balance, + EntityUid? uplinkEntity = null, + bool giveDiscounts = false) { - [Dependency] private readonly InventorySystem _inventorySystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [Dependency] private readonly StoreSystem _store = default!; + // Try to find target item if none passed - [ValidatePrototypeId] - public const string TelecrystalCurrencyPrototype = "Telecrystal"; + uplinkEntity ??= FindUplinkTarget(user); - /// - /// Adds an uplink to the target - /// - /// The person who is getting the uplink - /// The amount of currency on the uplink. If null, will just use the amount specified in the preset. - /// The entity that will actually have the uplink functionality. Defaults to the PDA if null. - /// Marker that enables discounts for uplink items. - /// Whether or not the uplink was added successfully - public bool AddUplink( - EntityUid user, - FixedPoint2? balance, - EntityUid? uplinkEntity = null, - bool giveDiscounts = false - ) + if (uplinkEntity == null) + return ImplantUplink(user, balance, giveDiscounts); + + EnsureComp(uplinkEntity.Value); + + SetUplink(user, uplinkEntity.Value, balance, giveDiscounts); + + // TODO add BUI. Currently can't be done outside of yaml -_- + // ^ What does this even mean? + + return true; + } + + /// + /// Configure TC for the uplink + /// + private void SetUplink(EntityUid user, EntityUid uplink, FixedPoint2 balance, bool giveDiscounts) + { + var store = EnsureComp(uplink); + store.AccountOwner = user; + + store.Balance.Clear(); + _store.TryAddCurrency(new Dictionary { { TelecrystalCurrencyPrototype, balance } }, + uplink, + store); + + var uplinkInitializedEvent = new StoreInitializedEvent( + TargetUser: user, + Store: uplink, + UseDiscounts: giveDiscounts, + Listings: _store.GetAvailableListings(user, uplink, store) + .ToArray()); + RaiseLocalEvent(ref uplinkInitializedEvent); + } + + /// + /// Implant an uplink as a fallback measure if the traitor had no PDA + /// + private bool ImplantUplink(EntityUid user, FixedPoint2 balance, bool giveDiscounts) + { + var implantProto = new string(FallbackUplinkImplant); + + if (!_proto.TryIndex(FallbackUplinkCatalog, out var catalog)) + return false; + + if (!catalog.Cost.TryGetValue(TelecrystalCurrencyPrototype, out var cost)) + return false; + + if (balance < cost) // Can't use Math functions on FixedPoint2 + balance = 0; + else + balance = balance - cost; + + var implant = _subdermalImplant.AddImplant(user, implantProto); + + if (!HasComp(implant)) + return false; + + SetUplink(user, implant.Value, balance, giveDiscounts); + return true; + } + + /// + /// Finds the entity that can hold an uplink for a user. + /// Usually this is a pda in their pda slot, but can also be in their hands. (but not pockets or inside bag, etc.) + /// + public EntityUid? FindUplinkTarget(EntityUid user) + { + // Try to find PDA in inventory + if (_inventorySystem.TryGetContainerSlotEnumerator(user, out var containerSlotEnumerator)) { - // Try to find target item if none passed - uplinkEntity ??= FindUplinkTarget(user); - if (uplinkEntity == null) + while (containerSlotEnumerator.MoveNext(out var pdaUid)) { - return false; + if (!pdaUid.ContainedEntity.HasValue) + continue; + + if (HasComp(pdaUid.ContainedEntity.Value) || HasComp(pdaUid.ContainedEntity.Value)) + return pdaUid.ContainedEntity.Value; } - - EnsureComp(uplinkEntity.Value); - var store = EnsureComp(uplinkEntity.Value); - - store.AccountOwner = user; - store.Balance.Clear(); - if (balance != null) - { - store.Balance.Clear(); - _store.TryAddCurrency(new Dictionary { { TelecrystalCurrencyPrototype, balance.Value } }, uplinkEntity.Value, store); - } - - var uplinkInitializedEvent = new StoreInitializedEvent( - TargetUser: user, - Store: uplinkEntity.Value, - UseDiscounts: giveDiscounts, - Listings: _store.GetAvailableListings(user, uplinkEntity.Value, store) - .ToArray() - ); - RaiseLocalEvent(ref uplinkInitializedEvent); - // TODO add BUI. Currently can't be done outside of yaml -_- - - return true; } - /// - /// Finds the entity that can hold an uplink for a user. - /// Usually this is a pda in their pda slot, but can also be in their hands. (but not pockets or inside bag, etc.) - /// - public EntityUid? FindUplinkTarget(EntityUid user) + // Also check hands + foreach (var item in _handsSystem.EnumerateHeld(user)) { - // Try to find PDA in inventory - if (_inventorySystem.TryGetContainerSlotEnumerator(user, out var containerSlotEnumerator)) - { - while (containerSlotEnumerator.MoveNext(out var pdaUid)) - { - if (!pdaUid.ContainedEntity.HasValue) - continue; - - if (HasComp(pdaUid.ContainedEntity.Value) || HasComp(pdaUid.ContainedEntity.Value)) - return pdaUid.ContainedEntity.Value; - } - } - - // Also check hands - foreach (var item in _handsSystem.EnumerateHeld(user)) - { - if (HasComp(item) || HasComp(item)) - return item; - } - - return null; + if (HasComp(item) || HasComp(item)) + return item; } + + return null; } } diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index 190a2d0263..ec462ae23e 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -56,8 +56,14 @@ public sealed class MeleeWeaponSystem : SharedMeleeWeaponSystem _damageExamine.AddDamageExamine(args.Message, damageSpec, Loc.GetString("damage-melee")); } - protected override bool ArcRaySuccessful(EntityUid targetUid, Vector2 position, Angle angle, Angle arcWidth, float range, MapId mapId, - EntityUid ignore, ICommonSession? session) + protected override bool ArcRaySuccessful(EntityUid targetUid, + Vector2 position, + Angle angle, + Angle arcWidth, + float range, + MapId mapId, + EntityUid ignore, + ICommonSession? session) { // Originally the client didn't predict damage effects so you'd intuit some level of how far // in the future you'd need to predict, but then there was a lot of complaining like "why would you add artifical delay" as if ping is a choice. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs index e44ee6baa1..b1a08fb505 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs @@ -2,6 +2,8 @@ using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; using Content.Shared.Mind.Components; using Content.Shared.Teleportation.Systems; +using Robust.Shared.Collections; +using Robust.Shared.Containers; using Robust.Shared.Random; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; @@ -11,6 +13,7 @@ public sealed class PortalArtifactSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly LinkedEntitySystem _link = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; public override void Initialize() { @@ -21,21 +24,28 @@ public sealed class PortalArtifactSystem : EntitySystem private void OnActivate(Entity artifact, ref ArtifactActivatedEvent args) { var map = Transform(artifact).MapID; + var validMinds = new ValueList(); + var mindQuery = EntityQueryEnumerator(); + while (mindQuery.MoveNext(out var uid, out var mc, out var xform, out var meta)) + { + // check if the MindContainer has a Mind and if the entity is not in a container (this also auto excludes AI) and if they are on the same map + if (mc.HasMind && !_container.IsEntityOrParentInContainer(uid, meta: meta, xform: xform) && xform.MapID == map) + { + validMinds.Add(uid); + } + } + //this would only be 0 if there were a station full of AIs and no one else, in that case just stop this function + if (validMinds.Count == 0) + return; + var firstPortal = Spawn(artifact.Comp.PortalProto, _transform.GetMapCoordinates(artifact)); - var minds = new List(); - var mindQuery = EntityQueryEnumerator(); - while (mindQuery.MoveNext(out var uid, out var mc, out var xform)) - { - if (mc.HasMind && xform.MapID == map) - minds.Add(uid); - } + var target = _random.Pick(validMinds); - var target = _random.Pick(minds); var secondPortal = Spawn(artifact.Comp.PortalProto, _transform.GetMapCoordinates(target)); //Manual position swapping, because the portal that opens doesn't trigger a collision, and doesn't teleport targets the first time. - _transform.SwapPositions(target, secondPortal); + _transform.SwapPositions(target, artifact.Owner); _link.TryLink(firstPortal, secondPortal, true); } diff --git a/Content.Shared/APC/SharedApc.cs b/Content.Shared/APC/SharedApc.cs index bf9fdc9444..802c06a6ab 100644 --- a/Content.Shared/APC/SharedApc.cs +++ b/Content.Shared/APC/SharedApc.cs @@ -178,15 +178,13 @@ namespace Content.Shared.APC public sealed class ApcBoundInterfaceState : BoundUserInterfaceState, IEquatable { public readonly bool MainBreaker; - public readonly bool HasAccess; public readonly int Power; public readonly ApcExternalPowerState ApcExternalPower; public readonly float Charge; - public ApcBoundInterfaceState(bool mainBreaker, bool hasAccess, int power, ApcExternalPowerState apcExternalPower, float charge) + public ApcBoundInterfaceState(bool mainBreaker, int power, ApcExternalPowerState apcExternalPower, float charge) { MainBreaker = mainBreaker; - HasAccess = hasAccess; Power = power; ApcExternalPower = apcExternalPower; Charge = charge; @@ -197,7 +195,6 @@ namespace Content.Shared.APC if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return MainBreaker == other.MainBreaker && - HasAccess == other.HasAccess && Power == other.Power && ApcExternalPower == other.ApcExternalPower && MathHelper.CloseTo(Charge, other.Charge); @@ -210,7 +207,7 @@ namespace Content.Shared.APC public override int GetHashCode() { - return HashCode.Combine(MainBreaker, HasAccess, Power, (int) ApcExternalPower, Charge); + return HashCode.Combine(MainBreaker, Power, (int) ApcExternalPower, Charge); } } diff --git a/Content.Shared/Bed/Sleep/SleepingSystem.cs b/Content.Shared/Bed/Sleep/SleepingSystem.cs index 0e29fcd98a..6a04bfe42d 100644 --- a/Content.Shared/Bed/Sleep/SleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Actions; using Content.Shared.Buckle.Components; using Content.Shared.Damage; using Content.Shared.Damage.ForceSay; +using Content.Shared.Emoting; using Content.Shared.Examine; using Content.Shared.Eye.Blinding.Systems; using Content.Shared.IdentityManagement; @@ -61,6 +62,7 @@ public sealed partial class SleepingSystem : EntitySystem SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnUnbuckleAttempt); + SubscribeLocalEvent(OnEmoteAttempt); } private void OnUnbuckleAttempt(Entity ent, ref UnbuckleAttemptEvent args) @@ -310,6 +312,14 @@ public sealed partial class SleepingSystem : EntitySystem Wake((ent, ent.Comp)); return true; } + + /// + /// Prevents the use of emote actions while sleeping + /// + public void OnEmoteAttempt(Entity ent, ref EmoteAttemptEvent args) + { + args.Cancel(); + } } diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index f75ea5c43e..6f06b36c77 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -45,6 +45,21 @@ namespace Content.Shared.CCVar public static readonly CVarDef DefaultGuide = CVarDef.Create("server.default_guide", "NewPlayer", CVar.REPLICATED | CVar.SERVER); + /// + /// If greater than 0, automatically restart the server after this many minutes of uptime. + /// + /// + /// + /// This is intended to work around various bugs and performance issues caused by long continuous server uptime. + /// + /// + /// This uses the same non-disruptive logic as update restarts, + /// i.e. the game will only restart at round end or when there is nobody connected. + /// + /// + public static readonly CVarDef ServerUptimeRestartMinutes = + CVarDef.Create("server.uptime_restart_minutes", 0, CVar.SERVERONLY); + /* * Ambience */ @@ -449,6 +464,12 @@ namespace Content.Shared.CCVar public static readonly CVarDef GameEntityMenuLookup = CVarDef.Create("game.entity_menu_lookup", 0.25f, CVar.CLIENTONLY | CVar.ARCHIVE); + /// + /// Should the clients window show the server hostname in the title? + /// + public static readonly CVarDef GameHostnameInTitlebar = + CVarDef.Create("game.hostname_in_titlebar", true, CVar.SERVER | CVar.REPLICATED); + /* * Discord */ diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index bd9ca4fa28..e5f3d46997 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -84,6 +84,35 @@ public abstract class SharedChatSystem : EntitySystem return current ?? _prototypeManager.Index(speech.SpeechVerb); } + /// + /// Splits the input message into a radio prefix part and the rest to preserve it during sanitization. + /// + /// + /// This is primarily for the chat emote sanitizer, which can match against ":b" as an emote, which is a valid radio keycode. + /// + public void GetRadioKeycodePrefix(EntityUid source, + string input, + out string output, + out string prefix) + { + prefix = string.Empty; + output = input; + + // If the string is less than 2, then it's probably supposed to be an emote. + // No one is sending empty radio messages! + if (input.Length <= 2) + return; + + if (!(input.StartsWith(RadioChannelPrefix) || input.StartsWith(RadioChannelAltPrefix))) + return; + + if (!_keyCodes.TryGetValue(char.ToLower(input[1]), out _)) + return; + + prefix = input[..2]; + output = input[2..]; + } + /// /// Attempts to resolve radio prefixes in chat messages (e.g., remove a leading ":e" and resolve the requested /// channel. Returns true if a radio message was attempted, even if the channel is invalid. diff --git a/Content.Shared/Chemistry/InjectOverTimeEvent.cs b/Content.Shared/Chemistry/InjectOverTimeEvent.cs new file mode 100644 index 0000000000..ca5ab4213f --- /dev/null +++ b/Content.Shared/Chemistry/InjectOverTimeEvent.cs @@ -0,0 +1,13 @@ +namespace Content.Shared.Chemistry.Events; + +/// +/// Raised directed on an entity when it embeds in another entity. +/// +[ByRefEvent] +public readonly record struct InjectOverTimeEvent(EntityUid embeddedIntoUid) +{ + /// + /// Entity that is embedded in. + /// + public readonly EntityUid EmbeddedIntoUid = embeddedIntoUid; +} diff --git a/Content.Shared/Ghost/SpectralComponent.cs b/Content.Shared/Ghost/SpectralComponent.cs new file mode 100644 index 0000000000..3799951152 --- /dev/null +++ b/Content.Shared/Ghost/SpectralComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Ghost; + +/// +/// Marker component to identify "ghostly" entities. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SpectralComponent : Component { } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index 76575df2fd..223c2d4a37 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Inventory.VirtualItem; @@ -130,7 +131,7 @@ public abstract partial class SharedHandsSystem TransformSystem.DropNextTo((entity, itemXform), (uid, userXform)); return true; } - + // drop the item with heavy calculations from their hands and place it at the calculated interaction range position // The DoDrop is handle if there's no drop target DoDrop(uid, hand, doDropInteraction: doDropInteraction, handsComp); @@ -138,7 +139,7 @@ public abstract partial class SharedHandsSystem // if there's no drop location stop here if (targetDropLocation == null) return true; - + // otherwise, also move dropped item and rotate it properly according to grid/map var (itemPos, itemRot) = TransformSystem.GetWorldPositionRotation(entity); var origin = new MapCoordinates(itemPos, itemXform.MapID); @@ -197,7 +198,7 @@ public abstract partial class SharedHandsSystem /// /// Removes the contents of a hand from its container. Assumes that the removal is allowed. In general, you should not be calling this directly. /// - public virtual void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = true, HandsComponent? handsComp = null) + public virtual void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = true, HandsComponent? handsComp = null, bool log = true) { if (!Resolve(uid, ref handsComp)) return; @@ -221,6 +222,9 @@ public abstract partial class SharedHandsSystem if (doDropInteraction) _interactionSystem.DroppedInteraction(uid, entity); + if (log) + _adminLogger.Add(LogType.Drop, LogImpact.Low, $"{ToPrettyString(uid):user} dropped {ToPrettyString(entity):entity}"); + if (hand == handsComp.ActiveHand) RaiseLocalEvent(entity, new HandDeselectedEvent(uid)); } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index ae22efcd6a..fc5adfaf15 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -178,8 +178,8 @@ public abstract partial class SharedHandsSystem : EntitySystem if (!CanPickupToHand(uid, entity, handsComp.ActiveHand, checkActionBlocker, handsComp)) return false; - DoDrop(uid, hand, false, handsComp); - DoPickup(uid, handsComp.ActiveHand, entity, handsComp); + DoDrop(uid, hand, false, handsComp, log:false); + DoPickup(uid, handsComp.ActiveHand, entity, handsComp, log: false); return true; } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs index 6d619460f4..7bc0a8025f 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs @@ -220,7 +220,7 @@ public abstract partial class SharedHandsSystem : EntitySystem /// /// Puts an entity into the player's hand, assumes that the insertion is allowed. In general, you should not be calling this function directly. /// - public virtual void DoPickup(EntityUid uid, Hand hand, EntityUid entity, HandsComponent? hands = null) + public virtual void DoPickup(EntityUid uid, Hand hand, EntityUid entity, HandsComponent? hands = null, bool log = true) { if (!Resolve(uid, ref hands)) return; @@ -235,7 +235,8 @@ public abstract partial class SharedHandsSystem : EntitySystem return; } - _adminLogger.Add(LogType.Pickup, LogImpact.Low, $"{ToPrettyString(uid):user} picked up {ToPrettyString(entity):entity}"); + if (log) + _adminLogger.Add(LogType.Pickup, LogImpact.Low, $"{ToPrettyString(uid):user} picked up {ToPrettyString(entity):entity}"); Dirty(uid, hands); diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 830d2270aa..94203de615 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -94,22 +94,38 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// public void AddImplants(EntityUid uid, IEnumerable implants) { - var coords = Transform(uid).Coordinates; foreach (var id in implants) { - var ent = Spawn(id, coords); - if (TryComp(ent, out var implant)) - { - ForceImplant(uid, ent, implant); - } - else - { - Log.Warning($"Found invalid starting implant '{id}' on {uid} {ToPrettyString(uid):implanted}"); - Del(ent); - } + AddImplant(uid, id); } } + /// + /// Adds a single implant to a person, and returns the implant. + /// Logs any implant ids that don't have . + /// + /// + /// The implant, if it was successfully created. Otherwise, null. + /// > + public EntityUid? AddImplant(EntityUid uid, String implantId) + { + var coords = Transform(uid).Coordinates; + var ent = Spawn(implantId, coords); + + if (TryComp(ent, out var implant)) + { + ForceImplant(uid, ent, implant); + } + else + { + Log.Warning($"Found invalid starting implant '{implantId}' on {uid} {ToPrettyString(uid):implanted}"); + Del(ent); + return null; + } + + return ent; + } + /// /// Forces an implant into a person /// Good for on spawn related code or admin additions diff --git a/Content.Shared/Interaction/Events/ContactInteractionEvent.cs b/Content.Shared/Interaction/Events/ContactInteractionEvent.cs index c9d5fba2ed..7be1c01c4a 100644 --- a/Content.Shared/Interaction/Events/ContactInteractionEvent.cs +++ b/Content.Shared/Interaction/Events/ContactInteractionEvent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Interaction.Events; /// public sealed class ContactInteractionEvent : HandledEntityEventArgs { - public readonly EntityUid Other; + public EntityUid Other; public ContactInteractionEvent(EntityUid other) { diff --git a/Content.Shared/Interaction/Events/InteractionFailureEvent.cs b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs index a820048104..8670164293 100644 --- a/Content.Shared/Interaction/Events/InteractionFailureEvent.cs +++ b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs @@ -3,5 +3,7 @@ namespace Content.Shared.Interaction.Events; /// /// Raised on the target when failing to pet/hug something. /// +// TODO INTERACTION +// Rename this, or move it to another namespace to make it clearer that this is specific to "petting/hugging" (InteractionPopupSystem) [ByRefEvent] public readonly record struct InteractionFailureEvent(EntityUid User); diff --git a/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs index da4f9e43d7..9395ddc910 100644 --- a/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs +++ b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs @@ -3,5 +3,7 @@ namespace Content.Shared.Interaction.Events; /// /// Raised on the target when successfully petting/hugging something. /// +// TODO INTERACTION +// Rename this, or move it to another namespace to make it clearer that this is specific to "petting/hugging" (InteractionPopupSystem) [ByRefEvent] public readonly record struct InteractionSuccessEvent(EntityUid User); diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 43dd97762c..7f2ecb50f8 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -456,8 +456,22 @@ namespace Content.Shared.Interaction inRangeUnobstructed); } + private bool IsDeleted(EntityUid uid) + { + return TerminatingOrDeleted(uid) || EntityManager.IsQueuedForDeletion(uid); + } + + private bool IsDeleted(EntityUid? uid) + { + //optional / null entities can pass this validation check. I.e., is-deleted returns false for null uids + return uid != null && IsDeleted(uid.Value); + } + public void InteractHand(EntityUid user, EntityUid target) { + if (IsDeleted(user) || IsDeleted(target)) + return; + var complexInteractions = _actionBlockerSystem.CanComplexInteract(user); if (!complexInteractions) { @@ -466,7 +480,8 @@ namespace Content.Shared.Interaction checkCanInteract: false, checkUseDelay: true, checkAccess: false, - complexInteractions: complexInteractions); + complexInteractions: complexInteractions, + checkDeletion: false); return; } @@ -479,6 +494,7 @@ namespace Content.Shared.Interaction return; } + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(target)); // all interactions should only happen when in range / unobstructed, so no range check is needed var message = new InteractHandEvent(user, target); RaiseLocalEvent(target, message, true); @@ -487,18 +503,23 @@ namespace Content.Shared.Interaction if (message.Handled) return; + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(target)); // Else we run Activate. InteractionActivate(user, target, checkCanInteract: false, checkUseDelay: true, checkAccess: false, - complexInteractions: complexInteractions); + complexInteractions: complexInteractions, + checkDeletion: false); } public void InteractUsingRanged(EntityUid user, EntityUid used, EntityUid? target, EntityCoordinates clickLocation, bool inRangeUnobstructed) { + if (IsDeleted(user) || IsDeleted(used) || IsDeleted(target)) + return; + if (target != null) { _adminLogger.Add( @@ -514,9 +535,10 @@ namespace Content.Shared.Interaction $"{ToPrettyString(user):user} interacted with *nothing* using {ToPrettyString(used):used}"); } - if (RangedInteractDoBefore(user, used, target, clickLocation, inRangeUnobstructed)) + if (RangedInteractDoBefore(user, used, target, clickLocation, inRangeUnobstructed, checkDeletion: false)) return; + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); if (target != null) { var rangedMsg = new RangedInteractEvent(user, used, target.Value, clickLocation); @@ -524,12 +546,12 @@ namespace Content.Shared.Interaction // We contact the USED entity, but not the target. DoContactInteraction(user, used, rangedMsg); - if (rangedMsg.Handled) return; } - InteractDoAfter(user, used, target, clickLocation, inRangeUnobstructed); + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); + InteractDoAfter(user, used, target, clickLocation, inRangeUnobstructed, checkDeletion: false); } protected bool ValidateInteractAndFace(EntityUid user, EntityCoordinates coordinates) @@ -933,11 +955,18 @@ namespace Content.Shared.Interaction EntityUid used, EntityUid? target, EntityCoordinates clickLocation, - bool canReach) + bool canReach, + bool checkDeletion = true) { + if (checkDeletion && (IsDeleted(user) || IsDeleted(used) || IsDeleted(target))) + return false; + var ev = new BeforeRangedInteractEvent(user, used, target, clickLocation, canReach); RaiseLocalEvent(used, ev); + if (!ev.Handled) + return false; + // We contact the USED entity, but not the target. DoContactInteraction(user, used, ev); return ev.Handled; @@ -966,6 +995,9 @@ namespace Content.Shared.Interaction bool checkCanInteract = true, bool checkCanUse = true) { + if (IsDeleted(user) || IsDeleted(used) || IsDeleted(target)) + return false; + if (checkCanInteract && !_actionBlockerSystem.CanInteract(user, target)) return false; @@ -977,9 +1009,10 @@ namespace Content.Shared.Interaction LogImpact.Low, $"{ToPrettyString(user):user} interacted with {ToPrettyString(target):target} using {ToPrettyString(used):used}"); - if (RangedInteractDoBefore(user, used, target, clickLocation, true)) + if (RangedInteractDoBefore(user, used, target, clickLocation, canReach: true, checkDeletion: false)) return true; + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); // all interactions should only happen when in range / unobstructed, so no range check is needed var interactUsingEvent = new InteractUsingEvent(user, used, target, clickLocation); RaiseLocalEvent(target, interactUsingEvent, true); @@ -989,8 +1022,10 @@ namespace Content.Shared.Interaction if (interactUsingEvent.Handled) return true; - if (InteractDoAfter(user, used, target, clickLocation, canReach: true)) + if (InteractDoAfter(user, used, target, clickLocation, canReach: true, checkDeletion: false)) return true; + + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); return false; } @@ -1004,11 +1039,14 @@ namespace Content.Shared.Interaction /// Whether the is in range of the . /// /// True if the interaction was handled. Otherwise, false. - public bool InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, EntityCoordinates clickLocation, bool canReach) + public bool InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, EntityCoordinates clickLocation, bool canReach, bool checkDeletion = true) { if (target is { Valid: false }) target = null; + if (checkDeletion && (IsDeleted(user) || IsDeleted(used) || IsDeleted(target))) + return false; + var afterInteractEvent = new AfterInteractEvent(user, used, target, clickLocation, canReach); RaiseLocalEvent(used, afterInteractEvent); DoContactInteraction(user, used, afterInteractEvent); @@ -1024,6 +1062,7 @@ namespace Content.Shared.Interaction if (target == null) return false; + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); var afterInteractUsingEvent = new AfterInteractUsingEvent(user, used, target, clickLocation, canReach); RaiseLocalEvent(target.Value, afterInteractUsingEvent); @@ -1034,9 +1073,7 @@ namespace Content.Shared.Interaction // Contact interactions are currently only used for forensics, so we don't raise used -> target } - if (afterInteractUsingEvent.Handled) - return true; - return false; + return afterInteractUsingEvent.Handled; } #region ActivateItemInWorld @@ -1068,8 +1105,13 @@ namespace Content.Shared.Interaction bool checkCanInteract = true, bool checkUseDelay = true, bool checkAccess = true, - bool? complexInteractions = null) + bool? complexInteractions = null, + bool checkDeletion = true) { + if (checkDeletion && (IsDeleted(user) || IsDeleted(used))) + return false; + + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used)); _delayQuery.TryComp(used, out var delayComponent); if (checkUseDelay && delayComponent != null && _useDelay.IsDelayed((used, delayComponent))) return false; @@ -1085,21 +1127,32 @@ namespace Content.Shared.Interaction if (checkAccess && !IsAccessible(user, used)) return false; - complexInteractions ??= SupportsComplexInteractions(user); + complexInteractions ??= _actionBlockerSystem.CanComplexInteract(user); var activateMsg = new ActivateInWorldEvent(user, used, complexInteractions.Value); RaiseLocalEvent(used, activateMsg, true); + if (activateMsg.Handled) + { + DoContactInteraction(user, used); + if (!activateMsg.WasLogged) + _adminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(user):user} activated {ToPrettyString(used):used}"); + + if (delayComponent != null) + _useDelay.TryResetDelay(used, component: delayComponent); + return true; + } + + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used)); var userEv = new UserActivateInWorldEvent(user, used, complexInteractions.Value); RaiseLocalEvent(user, userEv, true); - if (!activateMsg.Handled && !userEv.Handled) + if (!userEv.Handled) return false; - DoContactInteraction(user, used, activateMsg); + DoContactInteraction(user, used); // Still need to call this even without checkUseDelay in case this gets relayed from Activate. if (delayComponent != null) _useDelay.TryResetDelay(used, component: delayComponent); - if (!activateMsg.WasLogged) - _adminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(user):user} activated {ToPrettyString(used):used}"); + _adminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(user):user} activated {ToPrettyString(used):used}"); return true; } #endregion @@ -1118,6 +1171,9 @@ namespace Content.Shared.Interaction bool checkCanInteract = true, bool checkUseDelay = true) { + if (IsDeleted(user) || IsDeleted(used)) + return false; + _delayQuery.TryComp(used, out var delayComponent); if (checkUseDelay && delayComponent != null && _useDelay.IsDelayed((used, delayComponent))) return true; // if the item is on cooldown, we consider this handled. @@ -1138,8 +1194,9 @@ namespace Content.Shared.Interaction return true; } + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used)); // else, default to activating the item - return InteractionActivate(user, used, false, false, false); + return InteractionActivate(user, used, false, false, false, checkDeletion: false); } /// @@ -1164,10 +1221,11 @@ namespace Content.Shared.Interaction public void DroppedInteraction(EntityUid user, EntityUid item) { + if (IsDeleted(user) || IsDeleted(item)) + return; + var dropMsg = new DroppedEvent(user); RaiseLocalEvent(item, dropMsg, true); - if (dropMsg.Handled) - _adminLogger.Add(LogType.Drop, LogImpact.Low, $"{ToPrettyString(user):user} dropped {ToPrettyString(item):entity}"); // If the dropper is rotated then use their targetrelativerotation as the drop rotation var rotation = Angle.Zero; @@ -1314,15 +1372,21 @@ namespace Content.Shared.Interaction if (uidB == null || args?.Handled == false) return; - // Entities may no longer exist (banana was eaten, or human was exploded)? - if (!Exists(uidA) || !Exists(uidB)) + if (uidA == uidB.Value) return; - if (Paused(uidA) || Paused(uidB.Value)) + if (!TryComp(uidA, out MetaDataComponent? metaA) || metaA.EntityPaused) return; - RaiseLocalEvent(uidA, new ContactInteractionEvent(uidB.Value)); - RaiseLocalEvent(uidB.Value, new ContactInteractionEvent(uidA)); + if (!TryComp(uidB, out MetaDataComponent? metaB) || metaB.EntityPaused) + return ; + + // TODO Struct event + var ev = new ContactInteractionEvent(uidB.Value); + RaiseLocalEvent(uidA, ev); + + ev.Other = uidA; + RaiseLocalEvent(uidB.Value, ev); } diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 7e0acc2d5f..12380d53f8 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -41,6 +41,8 @@ namespace Content.Shared.Localizations _loc.AddFunction(culture, "LOC", FormatLoc); _loc.AddFunction(culture, "NATURALFIXED", FormatNaturalFixed); _loc.AddFunction(culture, "NATURALPERCENT", FormatNaturalPercent); + _loc.AddFunction(culture, "PLAYTIME", FormatPlaytime); + _loc.AddFunction(culture, "MANY", FormatMany); // TODO: Temporary fix for MANY() fluent errors. Remove after resolve errors. /* @@ -151,6 +153,16 @@ namespace Content.Shared.Localizations return Loc.GetString($"zzzz-fmt-direction-{dir.ToString()}"); } + /// + /// Formats playtime as hours and minutes. + /// + public static string FormatPlaytime(TimeSpan time) + { + var hours = (int)time.TotalHours; + var minutes = time.Minutes; + return Loc.GetString($"zzzz-fmt-playtime", ("hours", hours), ("minutes", minutes)); + } + private static ILocValue FormatLoc(LocArgs args) { var id = ((LocValueString) args.Args[0]).Value; @@ -239,5 +251,15 @@ namespace Content.Shared.Localizations return new LocValueString(res); } + + private static ILocValue FormatPlaytime(LocArgs args) + { + var time = TimeSpan.Zero; + if (args.Args is { Count: > 0 } && args.Args[0].Value is TimeSpan timeArg) + { + time = timeArg; + } + return new LocValueString(FormatPlaytime(time)); + } } } diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 162bca495c..bf0b5f650a 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -483,19 +483,6 @@ public abstract class SharedMindSystem : EntitySystem return false; } - /// - /// Gets a role component from a player's mind. - /// - /// Whether a role was found - public bool TryGetRole(EntityUid user, [NotNullWhen(true)] out T? role) where T : IComponent - { - role = default; - if (!TryComp(user, out var mindContainer) || mindContainer.Mind == null) - return false; - - return TryComp(mindContainer.Mind, out role); - } - /// /// Sets the Mind's UserId, Session, and updates the player's PlayerData. This should have no direct effect on the /// entity that any mind is connected to, except as a side effect of the fact that it may change a player's diff --git a/Content.Shared/Pinpointer/NavMapComponent.cs b/Content.Shared/Pinpointer/NavMapComponent.cs index d77169d32e..b876cb20fe 100644 --- a/Content.Shared/Pinpointer/NavMapComponent.cs +++ b/Content.Shared/Pinpointer/NavMapComponent.cs @@ -27,6 +27,50 @@ public sealed partial class NavMapComponent : Component /// [ViewVariables] public Dictionary Beacons = new(); + + /// + /// Describes the properties of a region on the station. + /// It is indexed by the entity assigned as the region owner. + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary RegionProperties = new(); + + /// + /// All flood filled regions, ready for display on a NavMapControl. + /// It is indexed by the entity assigned as the region owner. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary RegionOverlays = new(); + + /// + /// A queue of all region owners that are waiting their associated regions to be floodfilled. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Queue QueuedRegionsToFlood = new(); + + /// + /// A look up table to get a list of region owners associated with a flood filled chunk. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary> ChunkToRegionOwnerTable = new(); + + /// + /// A look up table to find flood filled chunks associated with a given region owner. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary> RegionOwnerToChunkTable = new(); } [Serializable, NetSerializable] @@ -51,10 +95,30 @@ public sealed class NavMapChunk(Vector2i origin) public GameTick LastUpdate; } +[Serializable, NetSerializable] +public sealed class NavMapRegionOverlay(Enum uiKey, List<(Vector2i, Vector2i)> gridCoords) +{ + /// + /// The key to the UI that will be displaying this region on its navmap + /// + public Enum UiKey = uiKey; + + /// + /// The local grid coordinates of the rectangles that make up the region + /// Item1 is the top left corner, Item2 is the bottom right corner + /// + public List<(Vector2i, Vector2i)> GridCoords = gridCoords; + + /// + /// Color of the region + /// + public Color Color = Color.White; +} + public enum NavMapChunkType : byte { // Values represent bit shift offsets when retrieving data in the tile array. - Invalid = byte.MaxValue, + Invalid = byte.MaxValue, Floor = 0, // I believe floors have directional information for diagonal tiles? Wall = SharedNavMapSystem.Directions, Airlock = 2 * SharedNavMapSystem.Directions, diff --git a/Content.Shared/Pinpointer/SharedNavMapSystem.cs b/Content.Shared/Pinpointer/SharedNavMapSystem.cs index 3ced5f3c9e..37d60dec28 100644 --- a/Content.Shared/Pinpointer/SharedNavMapSystem.cs +++ b/Content.Shared/Pinpointer/SharedNavMapSystem.cs @@ -3,10 +3,9 @@ using System.Numerics; using System.Runtime.CompilerServices; using Content.Shared.Tag; using Robust.Shared.GameStates; +using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Timing; -using Robust.Shared.Utility; namespace Content.Shared.Pinpointer; @@ -16,7 +15,7 @@ public abstract class SharedNavMapSystem : EntitySystem public const int Directions = 4; // Not directly tied to number of atmos directions public const int ChunkSize = 8; - public const int ArraySize = ChunkSize* ChunkSize; + public const int ArraySize = ChunkSize * ChunkSize; public const int AllDirMask = (1 << Directions) - 1; public const int AirlockMask = AllDirMask << (int) NavMapChunkType.Airlock; @@ -24,6 +23,7 @@ public abstract class SharedNavMapSystem : EntitySystem public const int FloorMask = AllDirMask << (int) NavMapChunkType.Floor; [Robust.Shared.IoC.Dependency] private readonly TagSystem _tagSystem = default!; + [Robust.Shared.IoC.Dependency] private readonly INetManager _net = default!; private static readonly ProtoId[] WallTags = {"Wall", "Window"}; private EntityQuery _doorQuery; @@ -57,7 +57,7 @@ public abstract class SharedNavMapSystem : EntitySystem public NavMapChunkType GetEntityType(EntityUid uid) { if (_doorQuery.HasComp(uid)) - return NavMapChunkType.Airlock; + return NavMapChunkType.Airlock; if (_tagSystem.HasAnyTag(uid, WallTags)) return NavMapChunkType.Wall; @@ -81,6 +81,57 @@ public abstract class SharedNavMapSystem : EntitySystem return true; } + public void AddOrUpdateNavMapRegion(EntityUid uid, NavMapComponent component, NetEntity regionOwner, NavMapRegionProperties regionProperties) + { + // Check if a new region has been added or an existing one has been altered + var isDirty = !component.RegionProperties.TryGetValue(regionOwner, out var oldProperties) || oldProperties != regionProperties; + + if (isDirty) + { + component.RegionProperties[regionOwner] = regionProperties; + + if (_net.IsServer) + Dirty(uid, component); + } + } + + public void RemoveNavMapRegion(EntityUid uid, NavMapComponent component, NetEntity regionOwner) + { + bool regionOwnerRemoved = component.RegionProperties.Remove(regionOwner) | component.RegionOverlays.Remove(regionOwner); + + if (regionOwnerRemoved) + { + if (component.RegionOwnerToChunkTable.TryGetValue(regionOwner, out var affectedChunks)) + { + foreach (var affectedChunk in affectedChunks) + { + if (component.ChunkToRegionOwnerTable.TryGetValue(affectedChunk, out var regionOwners)) + regionOwners.Remove(regionOwner); + } + + component.RegionOwnerToChunkTable.Remove(regionOwner); + } + + if (_net.IsServer) + Dirty(uid, component); + } + } + + public Dictionary GetNavMapRegionOverlays(EntityUid uid, NavMapComponent component, Enum uiKey) + { + var regionOverlays = new Dictionary(); + + foreach (var (regionOwner, regionOverlay) in component.RegionOverlays) + { + if (!regionOverlay.UiKey.Equals(uiKey)) + continue; + + regionOverlays.Add(regionOwner, regionOverlay); + } + + return regionOverlays; + } + #region: Event handling private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentGetState args) @@ -97,7 +148,7 @@ public abstract class SharedNavMapSystem : EntitySystem chunks.Add(origin, chunk.TileData); } - args.State = new NavMapState(chunks, component.Beacons); + args.State = new NavMapState(chunks, component.Beacons, component.RegionProperties); return; } @@ -110,7 +161,7 @@ public abstract class SharedNavMapSystem : EntitySystem chunks.Add(origin, chunk.TileData); } - args.State = new NavMapDeltaState(chunks, component.Beacons, new(component.Chunks.Keys)); + args.State = new NavMapDeltaState(chunks, component.Beacons, component.RegionProperties, new(component.Chunks.Keys)); } #endregion @@ -120,22 +171,26 @@ public abstract class SharedNavMapSystem : EntitySystem [Serializable, NetSerializable] protected sealed class NavMapState( Dictionary chunks, - Dictionary beacons) + Dictionary beacons, + Dictionary regions) : ComponentState { public Dictionary Chunks = chunks; public Dictionary Beacons = beacons; + public Dictionary Regions = regions; } [Serializable, NetSerializable] protected sealed class NavMapDeltaState( Dictionary modifiedChunks, Dictionary beacons, + Dictionary regions, HashSet allChunks) : ComponentState, IComponentDeltaState { public Dictionary ModifiedChunks = modifiedChunks; public Dictionary Beacons = beacons; + public Dictionary Regions = regions; public HashSet AllChunks = allChunks; public void ApplyToFullState(NavMapState state) @@ -159,11 +214,18 @@ public abstract class SharedNavMapSystem : EntitySystem { state.Beacons.Add(nuid, beacon); } + + state.Regions.Clear(); + foreach (var (nuid, region) in Regions) + { + state.Regions.Add(nuid, region); + } } public NavMapState CreateNewFullState(NavMapState state) { var chunks = new Dictionary(state.Chunks.Count); + foreach (var (index, data) in state.Chunks) { if (!AllChunks!.Contains(index)) @@ -177,12 +239,25 @@ public abstract class SharedNavMapSystem : EntitySystem Array.Copy(newData, data, ArraySize); } - return new NavMapState(chunks, new(Beacons)); + return new NavMapState(chunks, new(Beacons), new(Regions)); } } [Serializable, NetSerializable] public record struct NavMapBeacon(NetEntity NetEnt, Color Color, string Text, Vector2 Position); + [Serializable, NetSerializable] + public record struct NavMapRegionProperties(NetEntity Owner, Enum UiKey, HashSet Seeds) + { + // Server defined color for the region + public Color Color = Color.White; + + // The maximum number of tiles that can be assigned to this region + public int MaxArea = 625; + + // The maximum distance this region can propagate from its seeds + public int MaxRadius = 25; + } + #endregion } diff --git a/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs b/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs index 25f97dc15a..fde0319a37 100644 --- a/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs +++ b/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.GameStates; namespace Content.Shared.Power.Generator; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class ActiveGeneratorRevvingComponent: Component +public sealed partial class ActiveGeneratorRevvingComponent : Component { [DataField, ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] public TimeSpan CurrentTime = TimeSpan.Zero; diff --git a/Content.Shared/Power/Generator/ActiveGeneratorRevvingSystem.cs b/Content.Shared/Power/Generator/ActiveGeneratorRevvingSystem.cs index 9cd11ae604..459b2fd78d 100644 --- a/Content.Shared/Power/Generator/ActiveGeneratorRevvingSystem.cs +++ b/Content.Shared/Power/Generator/ActiveGeneratorRevvingSystem.cs @@ -1,6 +1,6 @@ namespace Content.Shared.Power.Generator; -public sealed class ActiveGeneratorRevvingSystem: EntitySystem +public sealed class ActiveGeneratorRevvingSystem : EntitySystem { public override void Initialize() { @@ -25,7 +25,7 @@ public sealed class ActiveGeneratorRevvingSystem: EntitySystem /// ActiveGeneratorRevvingComponent of the generator entity. public void StartAutoRevving(EntityUid uid, ActiveGeneratorRevvingComponent? component = null) { - if (Resolve(uid, ref component)) + if (Resolve(uid, ref component, false)) { // reset the revving component.CurrentTime = TimeSpan.FromSeconds(0); diff --git a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs index 008b7c2ced..e4125945d2 100644 --- a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs +++ b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs @@ -13,37 +13,43 @@ public sealed partial class EmbeddableProjectileComponent : Component /// /// Minimum speed of the projectile to embed. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public float MinimumSpeed = 5f; /// /// Delete the entity on embedded removal? /// Does nothing if there's no RemovalTime. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public bool DeleteOnRemove; /// /// How long it takes to remove the embedded object. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public float? RemovalTime = 3f; /// /// Whether this entity will embed when thrown, or only when shot as a projectile. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public bool EmbedOnThrow = true; /// /// How far into the entity should we offset (0 is wherever we collided). /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public Vector2 Offset = Vector2.Zero; /// /// Sound to play after embedding into a hit target. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public SoundSpecifier? Sound; + + /// + /// Uid of the entity the projectile is embed into. + /// + [DataField, AutoNetworkedField] + public EntityUid? EmbeddedIntoUid; } diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index 1b7d6d6f99..85e75d6d29 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -71,6 +71,8 @@ public abstract partial class SharedProjectileSystem : EntitySystem TryComp(uid, out var physics); _physics.SetBodyType(uid, BodyType.Dynamic, body: physics, xform: xform); _transform.AttachToGridOrMap(uid, xform); + component.EmbeddedIntoUid = null; + Dirty(uid, component); // Reset whether the projectile has damaged anything if it successfully was removed if (TryComp(uid, out var projectile)) @@ -127,8 +129,10 @@ public abstract partial class SharedProjectileSystem : EntitySystem } _audio.PlayPredicted(component.Sound, uid, null); + component.EmbeddedIntoUid = target; var ev = new EmbedEvent(user, target); RaiseLocalEvent(uid, ref ev); + Dirty(uid, component); } private void PreventCollision(EntityUid uid, ProjectileComponent component, ref PreventCollideEvent args) diff --git a/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs b/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs index 8c5baf93f5..67af4cc900 100644 --- a/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs +++ b/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs @@ -42,10 +42,12 @@ public abstract class SharedJammerSystem : EntitySystem { entity.Comp.SelectedPowerLevel = currIndex; Dirty(entity); - if (_jammer.TrySetRange(entity.Owner, GetCurrentRange(entity))) - { - Popup.PopupPredicted(Loc.GetString(setting.Message), user, user); - } + + // If the jammer is off, this won't do anything which is fine. + // The range should be updated when it turns on again! + _jammer.TrySetRange(entity.Owner, GetCurrentRange(entity)); + + Popup.PopupClient(Loc.GetString(setting.Message), user, user); }, Text = Loc.GetString(setting.Name), }; diff --git a/Content.Shared/Roles/JobRequirement/AgeRequirement.cs b/Content.Shared/Roles/JobRequirement/AgeRequirement.cs index 75a77ae155..30f607adf7 100644 --- a/Content.Shared/Roles/JobRequirement/AgeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/AgeRequirement.cs @@ -30,7 +30,7 @@ public sealed partial class AgeRequirement : JobRequirement if (!Inverted) { - reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-age-to-young", + reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-age-too-young", ("age", RequiredAge))); if (profile.Age < RequiredAge) @@ -38,7 +38,7 @@ public sealed partial class AgeRequirement : JobRequirement } else { - reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-age-to-old", + reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-age-too-old", ("age", RequiredAge))); if (profile.Age > RequiredAge) diff --git a/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs index 56b7d8ba81..8c86299210 100644 --- a/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Localizations; using Content.Shared.Preferences; using JetBrains.Annotations; using Robust.Shared.Prototypes; @@ -15,7 +16,7 @@ public sealed partial class DepartmentTimeRequirement : JobRequirement /// Which department needs the required amount of time. /// [DataField(required: true)] - public ProtoId Department = default!; + public ProtoId Department; /// /// How long (in seconds) this requirement is. @@ -47,7 +48,9 @@ public sealed partial class DepartmentTimeRequirement : JobRequirement playtime += otherTime; } - var deptDiff = Time.TotalMinutes - playtime.TotalMinutes; + var deptDiffSpan = Time - playtime; + var deptDiff = deptDiffSpan.TotalMinutes; + var formattedDeptDiff = ContentLocalizationManager.FormatPlaytime(deptDiffSpan); var nameDepartment = "role-timer-department-unknown"; if (protoManager.TryIndex(Department, out var departmentIndexed)) @@ -62,7 +65,7 @@ public sealed partial class DepartmentTimeRequirement : JobRequirement reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-department-insufficient", - ("time", Math.Ceiling(deptDiff)), + ("time", formattedDeptDiff), ("department", Loc.GetString(nameDepartment)), ("departmentColor", department.Color.ToHex()))); return false; @@ -72,7 +75,7 @@ public sealed partial class DepartmentTimeRequirement : JobRequirement { reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-department-too-high", - ("time", -deptDiff), + ("time", formattedDeptDiff), ("department", Loc.GetString(nameDepartment)), ("departmentColor", department.Color.ToHex()))); return false; diff --git a/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs b/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs index acbb8f2b4d..67b3938e1a 100644 --- a/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Localizations; using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Preferences; using JetBrains.Annotations; @@ -25,7 +26,9 @@ public sealed partial class OverallPlaytimeRequirement : JobRequirement reason = new FormattedMessage(); var overallTime = playTimes.GetValueOrDefault(PlayTimeTrackingShared.TrackerOverall); - var overallDiff = Time.TotalMinutes - overallTime.TotalMinutes; + var overallDiffSpan = Time - overallTime; + var overallDiff = overallDiffSpan.TotalMinutes; + var formattedOverallDiff = ContentLocalizationManager.FormatPlaytime(overallDiffSpan); if (!Inverted) { @@ -34,14 +37,14 @@ public sealed partial class OverallPlaytimeRequirement : JobRequirement reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-overall-insufficient", - ("time", Math.Ceiling(overallDiff)))); + ("time", formattedOverallDiff))); return false; } if (overallDiff <= 0 || overallTime >= Time) { reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-overall-too-high", - ("time", -overallDiff))); + ("time", formattedOverallDiff))); return false; } diff --git a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs index 658db95ab5..e75a18f011 100644 --- a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Localizations; using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Preferences; using Content.Shared.Roles.Jobs; @@ -17,7 +18,7 @@ public sealed partial class RoleTimeRequirement : JobRequirement /// What particular role they need the time requirement with. /// [DataField(required: true)] - public ProtoId Role = default!; + public ProtoId Role; /// [DataField(required: true)] @@ -34,7 +35,9 @@ public sealed partial class RoleTimeRequirement : JobRequirement string proto = Role; playTimes.TryGetValue(proto, out var roleTime); - var roleDiff = Time.TotalMinutes - roleTime.TotalMinutes; + var roleDiffSpan = Time - roleTime; + var roleDiff = roleDiffSpan.TotalMinutes; + var formattedRoleDiff = ContentLocalizationManager.FormatPlaytime(roleDiffSpan); var departmentColor = Color.Yellow; if (entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem)) @@ -52,7 +55,7 @@ public sealed partial class RoleTimeRequirement : JobRequirement reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-role-insufficient", - ("time", Math.Ceiling(roleDiff)), + ("time", formattedRoleDiff), ("job", Loc.GetString(proto)), ("departmentColor", departmentColor.ToHex()))); return false; @@ -62,7 +65,7 @@ public sealed partial class RoleTimeRequirement : JobRequirement { reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-role-too-high", - ("time", -roleDiff), + ("time", formattedRoleDiff), ("job", Loc.GetString(proto)), ("departmentColor", departmentColor.ToHex()))); return false; diff --git a/Content.Shared/Roles/Jobs/SharedJobSystem.cs b/Content.Shared/Roles/Jobs/SharedJobSystem.cs index 94447a5af4..8a4733c834 100644 --- a/Content.Shared/Roles/Jobs/SharedJobSystem.cs +++ b/Content.Shared/Roles/Jobs/SharedJobSystem.cs @@ -103,7 +103,6 @@ public abstract class SharedJobSystem : EntitySystem public bool MindHasJobWithId(EntityUid? mindId, string prototypeId) { - MindRoleComponent? comp = null; if (mindId is null) return false; @@ -112,9 +111,7 @@ public abstract class SharedJobSystem : EntitySystem if (role is null) return false; - comp = role.Value.Comp; - - return (comp.JobPrototype == prototypeId); + return role.Value.Comp1.JobPrototype == prototypeId; } public bool MindTryGetJob( @@ -124,7 +121,7 @@ public abstract class SharedJobSystem : EntitySystem prototype = null; MindTryGetJobId(mindId, out var protoId); - return (_prototypes.TryIndex(protoId, out prototype) || prototype is not null); + return _prototypes.TryIndex(protoId, out prototype) || prototype is not null; } public bool MindTryGetJobId( @@ -137,9 +134,9 @@ public abstract class SharedJobSystem : EntitySystem return false; if (_roles.MindHasRole(mindId.Value, out var role)) - job = role.Value.Comp.JobPrototype; + job = role.Value.Comp1.JobPrototype; - return (job is not null); + return job is not null; } /// diff --git a/Content.Shared/Roles/MindRoleComponent.cs b/Content.Shared/Roles/MindRoleComponent.cs index 38b83a8b3f..a3dd0b3bc6 100644 --- a/Content.Shared/Roles/MindRoleComponent.cs +++ b/Content.Shared/Roles/MindRoleComponent.cs @@ -42,6 +42,8 @@ public sealed partial class MindRoleComponent : BaseMindRoleComponent public ProtoId? JobPrototype { get; set; } } +// Why does this base component actually exist? It does make auto-categorization easy, but before that it was useless? +[EntityCategory("Roles")] public abstract partial class BaseMindRoleComponent : Component { diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index 925f61e7c7..00271693ab 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -10,6 +10,7 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Shared.Roles; @@ -92,19 +93,18 @@ public abstract class SharedRoleSystem : EntitySystem bool silent = false, string? jobPrototype = null) { - // Can't have someone get paid for two jobs now, can we - if (MindHasRole(mindId, out var jobRole) - && jobRole.Value.Comp.JobPrototype != jobPrototype) - { - Resolve(mindId, ref mind); - if (mind is not null) - { - _adminLogger.Add(LogType.Mind, - LogImpact.Low, - $"Job Role of {ToPrettyString(mind.OwnedEntity)} changed from '{jobRole.Value.Comp.JobPrototype}' to '{jobPrototype}'"); - } + if (!Resolve(mindId, ref mind)) + return; - jobRole.Value.Comp.JobPrototype = jobPrototype; + // Can't have someone get paid for two jobs now, can we + if (MindHasRole((mindId, mind), out var jobRole) + && jobRole.Value.Comp1.JobPrototype != jobPrototype) + { + _adminLogger.Add(LogType.Mind, + LogImpact.Low, + $"Job Role of {ToPrettyString(mind.OwnedEntity)} changed from '{jobRole.Value.Comp1.JobPrototype}' to '{jobPrototype}'"); + + jobRole.Value.Comp1.JobPrototype = jobPrototype; } else MindAddRoleDo(mindId, "MindRoleJob", mind, silent, jobPrototype); @@ -146,11 +146,12 @@ public abstract class SharedRoleSystem : EntitySystem { mindRoleComp.JobPrototype = jobPrototype; EnsureComp(mindRoleId); + DebugTools.AssertNull(mindRoleComp.AntagPrototype); + DebugTools.Assert(!mindRoleComp.Antag); + DebugTools.Assert(!mindRoleComp.ExclusiveAntag); } - if (mindRoleComp.Antag || mindRoleComp.ExclusiveAntag) - antagonist = true; - + antagonist |= mindRoleComp.Antag; mind.MindRoles.Add(mindRoleId); var mindEv = new MindRoleAddedEvent(silent); @@ -182,51 +183,55 @@ public abstract class SharedRoleSystem : EntitySystem /// /// Removes all instances of a specific role from this mind. /// - /// The mind to remove the role from. + /// The mind to remove the role from. /// The type of the role to remove. - /// Thrown if the mind does not exist or does not have this role. - /// Returns False if there was something wrong with the mind or the removal. True if successful> - public bool MindRemoveRole(EntityUid mindId) where T : IComponent + /// Returns false if the role did not exist. True if successful> + public bool MindRemoveRole(Entity mind) where T : IComponent { - if (!TryComp(mindId, out var mind) ) - throw new ArgumentException($"{mindId} does not exist or does not have mind component"); + if (typeof(T) == typeof(MindRoleComponent)) + throw new InvalidOperationException(); + + if (!Resolve(mind.Owner, ref mind.Comp)) + return false; var found = false; var antagonist = false; var delete = new List(); - foreach (var role in mind.MindRoles) + foreach (var role in mind.Comp.MindRoles) { if (!HasComp(role)) continue; - var roleComp = Comp(role); - antagonist = roleComp.Antag; - _entityManager.DeleteEntity(role); + if (!TryComp(role, out MindRoleComponent? roleComp)) + { + Log.Error($"Encountered mind role entity {ToPrettyString(role)} without a {nameof(MindRoleComponent)}"); + continue; + } + antagonist |= roleComp.Antag | roleComp.ExclusiveAntag; + _entityManager.DeleteEntity(role); delete.Add(role); found = true; - - } - - foreach (var role in delete) - { - mind.MindRoles.Remove(role); } if (!found) + return false; + + foreach (var role in delete) { - throw new ArgumentException($"{mindId} does not have this role: {typeof(T)}"); + mind.Comp.MindRoles.Remove(role); } - var message = new RoleRemovedEvent(mindId, mind, antagonist); - - if (mind.OwnedEntity != null) + if (mind.Comp.OwnedEntity != null) { - RaiseLocalEvent(mind.OwnedEntity.Value, message, true); + var message = new RoleRemovedEvent(mind.Owner, mind.Comp, antagonist); + RaiseLocalEvent(mind.Comp.OwnedEntity.Value, message, true); } + _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"'Role {typeof(T).Name}' removed from mind of {ToPrettyString(mind.OwnedEntity)}"); + $"All roles of type '{typeof(T).Name}' removed from mind of {ToPrettyString(mind.Comp.OwnedEntity)}"); + return true; } @@ -238,16 +243,14 @@ public abstract class SharedRoleSystem : EntitySystem /// True if the role existed and was removed public bool MindTryRemoveRole(EntityUid mindId) where T : IComponent { - if (!MindHasRole(mindId)) - { - Log.Warning($"Failed to remove role {typeof(T)} from {mindId} : mind does not have role "); - return false; - } - if (typeof(T) == typeof(MindRoleComponent)) return false; - return MindRemoveRole(mindId); + if (MindRemoveRole(mindId)) + return true; + + Log.Warning($"Failed to remove role {typeof(T)} from {ToPrettyString(mindId)} : mind does not have role "); + return false; } /// @@ -259,30 +262,29 @@ public abstract class SharedRoleSystem : EntitySystem /// The Mind Role entity component /// The Mind Role's entity component for T /// True if the role is found - public bool MindHasRole(EntityUid mindId, - [NotNullWhen(true)] out Entity? role, - [NotNullWhen(true)] out Entity? roleT) where T : IComponent + public bool MindHasRole(Entity mind, + [NotNullWhen(true)] out Entity? role) where T : IComponent { role = null; - roleT = null; - - if (!TryComp(mindId, out var mind)) + if (!Resolve(mind.Owner, ref mind.Comp)) return false; - var found = false; - - foreach (var roleEnt in mind.MindRoles) + foreach (var roleEnt in mind.Comp.MindRoles) { - if (!HasComp(roleEnt)) + if (!TryComp(roleEnt, out T? tcomp)) continue; - role = (roleEnt,Comp(roleEnt)); - roleT = (roleEnt,Comp(roleEnt)); - found = true; - break; + if (!TryComp(roleEnt, out MindRoleComponent? roleComp)) + { + Log.Error($"Encountered mind role entity {ToPrettyString(roleEnt)} without a {nameof(MindRoleComponent)}"); + continue; + } + + role = (roleEnt, roleComp, tcomp); + return true; } - return found; + return false; } /// @@ -317,7 +319,13 @@ public abstract class SharedRoleSystem : EntitySystem if (!HasComp(roleEnt, type)) continue; - role = (roleEnt,Comp(roleEnt)); + if (!TryComp(roleEnt, out MindRoleComponent? roleComp)) + { + Log.Error($"Encountered mind role entity {ToPrettyString(roleEnt)} without a {nameof(MindRoleComponent)}"); + continue; + } + + role = (roleEnt, roleComp); found = true; break; } @@ -325,20 +333,6 @@ public abstract class SharedRoleSystem : EntitySystem return found; } - /// - /// Finds the first mind role of a specific type on a mind entity. - /// Outputs an entity component for the mind role's MindRoleComponent - /// - /// The mind entity - /// The Mind Role entity component - /// The type of the role to find. - /// True if the role is found - public bool MindHasRole(EntityUid mindId, - [NotNullWhen(true)] out Entity? role) where T : IComponent - { - return MindHasRole(mindId, out role, out _); - } - /// /// Finds the first mind role of a specific type on a mind entity. /// @@ -347,7 +341,7 @@ public abstract class SharedRoleSystem : EntitySystem /// True if the role is found public bool MindHasRole(EntityUid mindId) where T : IComponent { - return MindHasRole(mindId, out _, out _); + return MindHasRole(mindId, out _); } //TODO: Delete this later @@ -374,28 +368,31 @@ public abstract class SharedRoleSystem : EntitySystem /// /// Reads all Roles of a mind Entity and returns their data as RoleInfo /// - /// The mind entity + /// The mind entity /// RoleInfo list - public List MindGetAllRoleInfo(EntityUid mindId) + public List MindGetAllRoleInfo(Entity mind) { var roleInfo = new List(); - if (!TryComp(mindId, out var mind)) + if (!Resolve(mind.Owner, ref mind.Comp)) return roleInfo; - foreach (var role in mind.MindRoles) + foreach (var role in mind.Comp.MindRoles) { var valid = false; var name = "game-ticker-unknown-role"; var prototype = ""; - string? playTimeTracker = null; + string? playTimeTracker = null; - var comp = Comp(role); - if (comp.AntagPrototype is not null) + if (!TryComp(role, out MindRoleComponent? comp)) { - prototype = comp.AntagPrototype; + Log.Error($"Encountered mind role entity {ToPrettyString(role)} without a {nameof(MindRoleComponent)}"); + continue; } + if (comp.AntagPrototype is not null) + prototype = comp.AntagPrototype; + if (comp.JobPrototype is not null && comp.AntagPrototype is null) { prototype = comp.JobPrototype; @@ -429,7 +426,7 @@ public abstract class SharedRoleSystem : EntitySystem } if (valid) - roleInfo.Add(new RoleInfo(name, comp.Antag || comp.ExclusiveAntag , playTimeTracker, prototype)); + roleInfo.Add(new RoleInfo(name, comp.Antag, playTimeTracker, prototype)); } return roleInfo; } @@ -442,12 +439,9 @@ public abstract class SharedRoleSystem : EntitySystem public bool MindIsAntagonist(EntityUid? mindId) { if (mindId is null) - { - Log.Warning($"Antagonist status of mind entity {mindId} could not be determined - mind entity not found"); return false; - } - return CheckAntagonistStatus(mindId.Value).Item1; + return CheckAntagonistStatus(mindId.Value).Antag; } /// @@ -458,37 +452,28 @@ public abstract class SharedRoleSystem : EntitySystem public bool MindIsExclusiveAntagonist(EntityUid? mindId) { if (mindId is null) - { - Log.Warning($"Antagonist status of mind entity {mindId} could not be determined - mind entity not found"); return false; - } - return CheckAntagonistStatus(mindId.Value).Item2; + return CheckAntagonistStatus(mindId.Value).ExclusiveAntag; } - private (bool, bool) CheckAntagonistStatus(EntityUid mindId) + public (bool Antag, bool ExclusiveAntag) CheckAntagonistStatus(Entity mind) { - if (!TryComp(mindId, out var mind)) - { - Log.Warning($"Antagonist status of mind entity {mindId} could not be determined - mind component not found"); + if (!Resolve(mind.Owner, ref mind.Comp)) return (false, false); - } var antagonist = false; var exclusiveAntag = false; - foreach (var role in mind.MindRoles) + foreach (var role in mind.Comp.MindRoles) { if (!TryComp(role, out var roleComp)) { - //If this ever shows up outside of an integration test, then we need to look into this further. - Log.Warning($"Mind Role Entity {role} does not have MindRoleComponent!"); + Log.Error($"Mind Role Entity {ToPrettyString(role)} does not have a MindRoleComponent, despite being listed as a role belonging to {ToPrettyString(mind)}|"); continue; } - if (roleComp.Antag || exclusiveAntag) - antagonist = true; - if (roleComp.ExclusiveAntag) - exclusiveAntag = true; + antagonist |= roleComp.Antag; + exclusiveAntag |= roleComp.ExclusiveAntag; } return (antagonist, exclusiveAntag); @@ -504,6 +489,9 @@ public abstract class SharedRoleSystem : EntitySystem _audio.PlayGlobal(sound, mind.Session); } + // TODO ROLES Change to readonly. + // Passing around a reference to a prototype's hashset makes me uncomfortable because it might be accidentally + // mutated. public HashSet? GetJobRequirement(JobPrototype job) { if (_requirementOverride != null && _requirementOverride.Jobs.TryGetValue(job.ID, out var req)) @@ -512,6 +500,7 @@ public abstract class SharedRoleSystem : EntitySystem return job.Requirements; } + // TODO ROLES Change to readonly. public HashSet? GetJobRequirement(ProtoId job) { if (_requirementOverride != null && _requirementOverride.Jobs.TryGetValue(job, out var req)) @@ -520,6 +509,7 @@ public abstract class SharedRoleSystem : EntitySystem return _prototypes.Index(job).Requirements; } + // TODO ROLES Change to readonly. public HashSet? GetAntagRequirement(ProtoId antag) { if (_requirementOverride != null && _requirementOverride.Antags.TryGetValue(antag, out var req)) @@ -528,6 +518,7 @@ public abstract class SharedRoleSystem : EntitySystem return _prototypes.Index(antag).Requirements; } + // TODO ROLES Change to readonly. public HashSet? GetAntagRequirement(AntagPrototype antag) { if (_requirementOverride != null && _requirementOverride.Antags.TryGetValue(antag.ID, out var req)) diff --git a/Content.Shared/Silicons/Borgs/Components/BorgModuleIconComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgModuleIconComponent.cs new file mode 100644 index 0000000000..ff38a40f48 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/BorgModuleIconComponent.cs @@ -0,0 +1,20 @@ +//using Robust.Shared.GameObjects; +using Robust.Shared.GameStates; +using Robust.Shared.Utility; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// This is used to override the action icon for cyborg actions. +/// Without this component the no-action state will be used. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class BorgModuleIconComponent : Component +{ + /// + /// The action icon for this module + /// + [DataField] + public SpriteSpecifier.Rsi Icon = default!; + +} \ No newline at end of file diff --git a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs index 4800aa0c59..1c54938b8a 100644 --- a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs @@ -1,4 +1,5 @@ using Robust.Shared.Prototypes; +using Robust.Shared.Audio; namespace Content.Shared.Silicons.Laws.Components; @@ -20,4 +21,12 @@ public sealed partial class SiliconLawProviderComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public SiliconLawset? Lawset; + + /// + /// The sound that plays for the Silicon player + /// when the particular lawboard has been inserted. + /// + [DataField] + public SoundSpecifier? LawUploadSound = new SoundPathSpecifier("/Audio/Misc/cryo_warning.ogg"); + } diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index baef62c3da..7eef20cebd 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -285,6 +285,8 @@ public abstract partial class SharedStationAiSystem : EntitySystem private bool SetupEye(Entity ent) { + if (_net.IsClient) + return false; if (ent.Comp.RemoteEntity != null) return false; @@ -299,8 +301,11 @@ public abstract partial class SharedStationAiSystem : EntitySystem private void ClearEye(Entity ent) { + if (_net.IsClient) + return; QueueDel(ent.Comp.RemoteEntity); ent.Comp.RemoteEntity = null; + Dirty(ent); } private void AttachEye(Entity ent) @@ -330,6 +335,8 @@ public abstract partial class SharedStationAiSystem : EntitySystem if (_timing.ApplyingState) return; + SetupEye(ent); + // Just so text and the likes works properly _metadata.SetEntityName(ent.Owner, MetaData(args.Entity).EntityName); @@ -351,6 +358,7 @@ public abstract partial class SharedStationAiSystem : EntitySystem { _eye.SetTarget(args.Entity, null, eyeComp); } + ClearEye(ent); } private void UpdateAppearance(Entity entity) diff --git a/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs index a979a6ec50..65848cb5e5 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Whitelist; using Robust.Shared.GameStates; namespace Content.Shared.Sound.Components; @@ -8,4 +9,9 @@ namespace Content.Shared.Sound.Components; [RegisterComponent, NetworkedComponent] public sealed partial class EmitSoundOnUIOpenComponent : BaseEmitSoundComponent { + /// + /// Blacklist for making the sound not play if certain entities open the UI + /// + [DataField] + public EntityWhitelist Blacklist = new(); } diff --git a/Content.Shared/Sound/SharedEmitSoundSystem.cs b/Content.Shared/Sound/SharedEmitSoundSystem.cs index 8040910dc3..3e051fff31 100644 --- a/Content.Shared/Sound/SharedEmitSoundSystem.cs +++ b/Content.Shared/Sound/SharedEmitSoundSystem.cs @@ -58,7 +58,10 @@ public abstract class SharedEmitSoundSystem : EntitySystem private void HandleEmitSoundOnUIOpen(EntityUid uid, EmitSoundOnUIOpenComponent component, AfterActivatableUIOpenEvent args) { - TryEmitSound(uid, component, args.User); + if (_whitelistSystem.IsBlacklistFail(component.Blacklist, args.User)) + { + TryEmitSound(uid, component, args.User); + } } private void OnMobState(Entity entity, ref MobStateChangedEvent args) diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index 0584b10562..ad264cd22a 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -150,6 +150,7 @@ public abstract class SharedStationSpawningSystem : EntitySystem foreach (var (slot, entProtos) in startingGear.Storage) { + ents.Clear(); if (entProtos.Count == 0) continue; diff --git a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 08a69c345f..af9b768e98 100644 --- a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -14,6 +14,8 @@ using Content.Shared.Verbs; using Content.Shared.IdentityManagement; using Content.Shared.Tools.EntitySystems; using Content.Shared.Whitelist; +using Content.Shared.Materials; +using Robust.Shared.Map; namespace Content.Shared.Storage.EntitySystems; @@ -35,6 +37,7 @@ public sealed class SecretStashSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnDestroyed); + SubscribeLocalEvent(OnReclaimed); SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(ToolOpenableSystem) }); SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent>(OnGetVerb); @@ -47,12 +50,12 @@ public sealed class SecretStashSystem : EntitySystem private void OnDestroyed(Entity entity, ref DestructionEventArgs args) { - var storedInside = _containerSystem.EmptyContainer(entity.Comp.ItemContainer); - if (storedInside != null && storedInside.Count >= 1) - { - var popup = Loc.GetString("comp-secret-stash-on-destroyed-popup", ("stashname", GetStashName(entity))); - _popupSystem.PopupEntity(popup, storedInside[0], PopupType.MediumCaution); - } + DropContentsAndAlert(entity); + } + + private void OnReclaimed(Entity entity, ref GotReclaimedEvent args) + { + DropContentsAndAlert(entity, args.ReclaimerCoordinates); } private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) @@ -211,5 +214,18 @@ public sealed class SecretStashSystem : EntitySystem return entity.Comp.ItemContainer.ContainedEntity != null; } + /// + /// Drop the item stored in the stash and alert all nearby players with a popup. + /// + private void DropContentsAndAlert(Entity entity, EntityCoordinates? cords = null) + { + var storedInside = _containerSystem.EmptyContainer(entity.Comp.ItemContainer, true, cords); + if (storedInside != null && storedInside.Count >= 1) + { + var popup = Loc.GetString("comp-secret-stash-on-destroyed-popup", ("stashname", GetStashName(entity))); + _popupSystem.PopupPredicted(popup, storedInside[0], null, PopupType.MediumCaution); + } + } + #endregion } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 3e817885ce..c1664649b6 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -673,7 +673,7 @@ public abstract class SharedStorageSystem : EntitySystem private void OnSaveItemLocation(StorageSaveItemLocationEvent msg, EntitySessionEventArgs args) { - if (!ValidateInput(args, msg.Storage, msg.Item, out var player, out var storage, out var item, held: true)) + if (!ValidateInput(args, msg.Storage, msg.Item, out var player, out var storage, out var item)) return; SaveItemLocation(storage!, item.Owner); diff --git a/Content.Shared/Strip/SharedStrippableSystem.cs b/Content.Shared/Strip/SharedStrippableSystem.cs index e1c3d8ef0d..7afe503275 100644 --- a/Content.Shared/Strip/SharedStrippableSystem.cs +++ b/Content.Shared/Strip/SharedStrippableSystem.cs @@ -103,7 +103,7 @@ public abstract class SharedStrippableSystem : EntitySystem if (userHands.ActiveHandEntity != null && !hasEnt) StartStripInsertInventory((user, userHands), strippable.Owner, userHands.ActiveHandEntity.Value, args.Slot); - else if (userHands.ActiveHandEntity == null && hasEnt) + else if (hasEnt) StartStripRemoveInventory(user, strippable.Owner, held!.Value, args.Slot); } @@ -135,7 +135,7 @@ public abstract class SharedStrippableSystem : EntitySystem if (user.Comp.ActiveHandEntity != null && handSlot.HeldEntity == null) StartStripInsertHand(user, target, user.Comp.ActiveHandEntity.Value, handId, targetStrippable); - else if (user.Comp.ActiveHandEntity == null && handSlot.HeldEntity != null) + else if (handSlot.HeldEntity != null) StartStripRemoveHand(user, target, handSlot.HeldEntity.Value, handId, targetStrippable); } diff --git a/Content.Shared/UserInterface/IntrinsicUISystem.cs b/Content.Shared/UserInterface/IntrinsicUISystem.cs index 2d8c5d1480..b16492b835 100644 --- a/Content.Shared/UserInterface/IntrinsicUISystem.cs +++ b/Content.Shared/UserInterface/IntrinsicUISystem.cs @@ -10,6 +10,7 @@ public sealed class IntrinsicUISystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(InitActions); + SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnActionToggle); } @@ -21,6 +22,15 @@ public sealed class IntrinsicUISystem : EntitySystem args.Handled = InteractUI(uid, args.Key, component); } + private void OnShutdown(EntityUid uid, IntrinsicUIComponent component, ref ComponentShutdown args) + { + foreach (var actionEntry in component.UIs.Values) + { + var actionId = actionEntry.ToggleActionEntity; + _actionsSystem.RemoveAction(uid, actionId); + } + } + private void InitActions(EntityUid uid, IntrinsicUIComponent component, MapInitEvent args) { foreach (var entry in component.UIs.Values) diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index 50023a023a..f3fe3a1ecd 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -87,12 +87,13 @@ namespace Content.Shared.VendingMachines /// Sound that plays when ejecting an item /// [DataField("soundVend")] - // Grabbed from: https://github.com/discordia-space/CEV-Eris/blob/f702afa271136d093ddeb415423240a2ceb212f0/sound/machines/vending_drop.ogg + // Grabbed from: https://github.com/tgstation/tgstation/blob/d34047a5ae911735e35cd44a210953c9563caa22/sound/machines/machine_vend.ogg public SoundSpecifier SoundVend = new SoundPathSpecifier("/Audio/Machines/machine_vend.ogg") { Params = new AudioParams { - Volume = -2f + Volume = -4f, + Variation = 0.15f } }; diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 87ba290d57..ebd1b730eb 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -440,7 +440,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem throw new NotImplementedException(); } - DoLungeAnimation(user, weaponUid, weapon.Angle, GetCoordinates(attack.Coordinates).ToMap(EntityManager, TransformSystem), weapon.Range, animation); + DoLungeAnimation(user, weaponUid, weapon.Angle, TransformSystem.ToMapCoordinates(GetCoordinates(attack.Coordinates)), weapon.Range, animation); } var attackEv = new MeleeAttackEvent(weaponUid); @@ -472,12 +472,14 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem // TODO: This needs fixing if (meleeUid == user) { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Low, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (light) using their hands and missed"); } else { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Low, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (light) using {ToPrettyString(meleeUid):tool} and missed"); } var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, null); @@ -526,12 +528,14 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem if (meleeUid == user) { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Medium, $"{ToPrettyString(user):actor} melee attacked (light) {ToPrettyString(target.Value):subject} using their hands and dealt {damageResult.GetTotal():damage} damage"); } else { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Medium, $"{ToPrettyString(user):actor} melee attacked (light) {ToPrettyString(target.Value):subject} using {ToPrettyString(meleeUid):tool} and dealt {damageResult.GetTotal():damage} damage"); } @@ -553,7 +557,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem if (!TryComp(user, out TransformComponent? userXform)) return false; - var targetMap = GetCoordinates(ev.Coordinates).ToMap(EntityManager, TransformSystem); + var targetMap = TransformSystem.ToMapCoordinates(GetCoordinates(ev.Coordinates)); if (targetMap.MapId != userXform.MapID) return false; @@ -569,12 +573,14 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem { if (meleeUid == user) { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Low, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (heavy) using their hands and missed"); } else { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Low, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (heavy) using {ToPrettyString(meleeUid):tool} and missed"); } var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, direction); @@ -595,8 +601,14 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem // Validate client for (var i = entities.Count - 1; i >= 0; i--) { - if (ArcRaySuccessful(entities[i], userPos, direction.ToWorldAngle(), component.Angle, distance, - userXform.MapID, user, session)) + if (ArcRaySuccessful(entities[i], + userPos, + direction.ToWorldAngle(), + component.Angle, + distance, + userXform.MapID, + user, + session)) { continue; } @@ -663,16 +675,24 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem if (damageResult != null && damageResult.GetTotal() > FixedPoint2.Zero) { + // If the target has stamina and is taking blunt damage, they should also take stamina damage based on their blunt to stamina factor + if (damageResult.DamageDict.TryGetValue("Blunt", out var bluntDamage)) + { + _stamina.TakeStaminaDamage(entity, (bluntDamage * component.BluntStaminaDamageFactor).Float(), visual: false, source: user, with: meleeUid == user ? null : meleeUid); + } + appliedDamage += damageResult; if (meleeUid == user) { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Medium, $"{ToPrettyString(user):actor} melee attacked (heavy) {ToPrettyString(entity):subject} using their hands and dealt {damageResult.GetTotal():damage} damage"); } else { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Medium, $"{ToPrettyString(user):actor} melee attacked (heavy) {ToPrettyString(entity):subject} using {ToPrettyString(meleeUid):tool} and dealt {damageResult.GetTotal():damage} damage"); } } @@ -706,8 +726,13 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem { var castAngle = new Angle(baseAngle + increment * i); var res = _physics.IntersectRay(mapId, - new CollisionRay(position, castAngle.ToWorldVec(), - AttackMask), range, ignore, false).ToList(); + new CollisionRay(position, + castAngle.ToWorldVec(), + AttackMask), + range, + ignore, + false) + .ToList(); if (res.Count != 0) { @@ -718,8 +743,14 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem return resSet; } - protected virtual bool ArcRaySuccessful(EntityUid targetUid, Vector2 position, Angle angle, Angle arcWidth, float range, - MapId mapId, EntityUid ignore, ICommonSession? session) + protected virtual bool ArcRaySuccessful(EntityUid targetUid, + Vector2 position, + Angle angle, + Angle arcWidth, + float range, + MapId mapId, + EntityUid ignore, + ICommonSession? session) { // Only matters for server. return true; diff --git a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs index d2f0333b83..e790973538 100644 --- a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs @@ -114,19 +114,14 @@ public abstract class SharedGrapplingGunSystem : EntitySystem private void OnGunActivate(EntityUid uid, GrapplingGunComponent component, ActivateInWorldEvent args) { - if (!Timing.IsFirstTimePredicted || args.Handled || !args.Complex) - return; - - if (Deleted(component.Projectile)) + if (!Timing.IsFirstTimePredicted || args.Handled || !args.Complex || component.Projectile is not {} projectile) return; _audio.PlayPredicted(component.CycleSound, uid, args.User); _appearance.SetData(uid, SharedTetherGunSystem.TetherVisualsStatus.Key, true); if (_netManager.IsServer) - { - QueueDel(component.Projectile.Value); - } + QueueDel(projectile); component.Projectile = null; SetReeling(uid, component, false, args.User); diff --git a/Resources/Audio/Ambience/Antag/attributions.yml b/Resources/Audio/Ambience/Antag/attributions.yml index 25917a5da2..0d3d278a62 100644 --- a/Resources/Audio/Ambience/Antag/attributions.yml +++ b/Resources/Audio/Ambience/Antag/attributions.yml @@ -18,3 +18,7 @@ license: "CC-BY-SA-3.0" copyright: "Made by @ps3moira on github" source: https://www.youtube.com/watch?v=4-R-_DiqiLo +- files: ["silicon_lawboard_antimov.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Made by @ps3moira on Discord for SS14" + source: "https://www.youtube.com/watch?v=jf1sYGYVLsw" diff --git a/Resources/Audio/Ambience/Antag/silicon_lawboard_antimov.ogg b/Resources/Audio/Ambience/Antag/silicon_lawboard_antimov.ogg new file mode 100644 index 0000000000..911a34532d Binary files /dev/null and b/Resources/Audio/Ambience/Antag/silicon_lawboard_antimov.ogg differ diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml index 1b4ea74741..7675162a04 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -163,6 +163,7 @@ - chime.ogg - buzz-sigh.ogg - buzztwo.ogg + - machine_vend.gg license: "CC-BY-SA-3.0" copyright: "Taken from TG station." source: "https://github.com/tgstation/tgstation/tree/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0" diff --git a/Resources/Audio/Machines/machine_vend.ogg b/Resources/Audio/Machines/machine_vend.ogg index 8f7c187d0c..92867a1f3d 100644 Binary files a/Resources/Audio/Machines/machine_vend.ogg and b/Resources/Audio/Machines/machine_vend.ogg differ diff --git a/Resources/Audio/MidiCustom/space-station-14.sf2 b/Resources/Audio/MidiCustom/space-station-14.sf2 index 8dcfce9472..54c6eb6196 100644 Binary files a/Resources/Audio/MidiCustom/space-station-14.sf2 and b/Resources/Audio/MidiCustom/space-station-14.sf2 differ diff --git a/Resources/Audio/Misc/attributions.yml b/Resources/Audio/Misc/attributions.yml index 9b3cb64ae7..a7349a445b 100644 --- a/Resources/Audio/Misc/attributions.yml +++ b/Resources/Audio/Misc/attributions.yml @@ -28,6 +28,11 @@ copyright: "Taken from TG station." source: "https://github.com/tgstation/tgstation/blob/2f63c779cb43543cfde76fa7ddaeacfde185fded/sound/effects/ratvar_reveal.ogg" +- files: ["cryo_warning.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from TG station." + source: "https://github.com/tgstation/tgstation/blob/00cf2da5f785c110b9930077b3202f1a4638e1fd/sound/machines/cryo_warning.ogg" + - files: ["epsilon.ogg"] license: "CC-BY-SA-3.0" copyright: "Made by dj-34 (https://github.com/dj-34)" diff --git a/Resources/Audio/Misc/cryo_warning.ogg b/Resources/Audio/Misc/cryo_warning.ogg new file mode 100644 index 0000000000..06cdebc944 Binary files /dev/null and b/Resources/Audio/Misc/cryo_warning.ogg differ diff --git a/Resources/Audio/Voice/Reptilian/attritbutions.yml b/Resources/Audio/Voice/Reptilian/attritbutions.yml index 7e8b2a0ce3..7fa86b2ebf 100644 --- a/Resources/Audio/Voice/Reptilian/attritbutions.yml +++ b/Resources/Audio/Voice/Reptilian/attritbutions.yml @@ -2,3 +2,8 @@ copyright: '"scream_lizard.ogg" by Skyrat-SS13' license: source: https://github.com/Skyrat-SS13/Skyrat-tg/pull/892 + +- files: [reptilian_tailthump.ogg] + copyright: "Taken from https://freesound.org/" + license: "CC0-1.0" + source: https://freesound.org/people/TylerAM/sounds/389665/ \ No newline at end of file diff --git a/Resources/Audio/Voice/Reptilian/reptilian_tailthump.ogg b/Resources/Audio/Voice/Reptilian/reptilian_tailthump.ogg new file mode 100644 index 0000000000..e4bf25f7b8 Binary files /dev/null and b/Resources/Audio/Voice/Reptilian/reptilian_tailthump.ogg differ diff --git a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml index 7c46974818..89db045c96 100644 --- a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml +++ b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml @@ -26,4 +26,9 @@ - files: ["ship_duster.ogg", "ship_friendship.ogg", "ship_svalinn.ogg", "ship_perforator.ogg"] license: "CC0-1.0" copyright: "Created by MIXnikita for Space Station 14" - source: "https://github.com/MIXnikita" \ No newline at end of file + source: "https://github.com/MIXnikita" + +- files: ["syringe_gun.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from vgstation" + source: "https://github.com/vgstation-coders/vgstation13/commit/23303188abe6fe31b114a218a1950d7325a23730" \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Gunshots/syringe_gun.ogg b/Resources/Audio/Weapons/Guns/Gunshots/syringe_gun.ogg new file mode 100644 index 0000000000..2132808ecd Binary files /dev/null and b/Resources/Audio/Weapons/Guns/Gunshots/syringe_gun.ogg differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 63fd6cabd2..2c4db6e82b 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -559,5 +559,13 @@ Entries: id: 69 time: '2024-10-09T11:55:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32531 +- author: IProduceWidgets + changes: + - message: invokeverb should work with smite names now. Find the names in the smite + tab on mouse hover. + type: Fix + id: 70 + time: '2024-10-16T22:24:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32844 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 70f0c12ba3..ca559c1338 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,397 +1,4 @@ Entries: -- author: Moomoobeef - changes: - - message: Added the ability to wear lizard plushies on your head! - type: Add - id: 7001 - time: '2024-07-29T12:52:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30400 -- author: TurboTrackerss14 - changes: - - message: Reduced Kobold ghostrole chance to mirror Monkey - type: Tweak - id: 7002 - time: '2024-07-29T15:16:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30450 -- author: Ian321 - changes: - - message: The Courser now comes with a defibrillator. - type: Tweak - id: 7003 - time: '2024-07-30T01:05:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30471 -- author: slarticodefast - changes: - - message: Fixed puppy Ian not counting as a thief steal target. - type: Fix - id: 7004 - time: '2024-07-30T01:22:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30474 -- author: themias - changes: - - message: Added envelopes to the PTech and bureaucracy crate - type: Add - id: 7005 - time: '2024-07-30T01:49:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30298 -- author: TheKittehJesus - changes: - - message: The recipe for chow mein, egg-fried rice, and both brownies now use liquid - egg instead of a whole egg. - type: Tweak - - message: Cake batter now also requires 5u of milk - type: Tweak - id: 7006 - time: '2024-07-30T02:14:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30262 -- author: Plykiya - changes: - - message: Wearing something that covers your head will prevent your hair from being - cut. - type: Add - - message: You now see a popup when your hair is being altered. - type: Add - - message: The doafter for altering other people's hair now takes seven seconds. - type: Tweak - id: 7007 - time: '2024-07-30T02:17:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30366 -- author: Cojoke-dot - changes: - - message: Hamlet and other ghost rolls can now spin when they enter combat mode - type: Fix - id: 7008 - time: '2024-07-30T02:48:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30478 -- author: themias - changes: - - message: Fixed the ACC wire not appearing in vending machine wire layouts - type: Fix - id: 7009 - time: '2024-07-30T03:04:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30453 -- author: Blackern5000 - changes: - - message: The defibrillator has been recolored slightly - type: Tweak - id: 7010 - time: '2024-07-30T04:41:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29964 -- author: themias - changes: - - message: Fixed victim's fingerprints transferring onto an attacker's weapon - type: Fix - id: 7011 - time: '2024-07-30T08:35:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30257 -- author: to4no_fix - changes: - - message: Now engineering access is needed to interact with the particle accelerator - type: Tweak - id: 7012 - time: '2024-07-30T11:29:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30394 -- author: Cojoke-dot - changes: - - message: You can no longer get out of a disposal chute or container while knocked - over by trying to walk - type: Fix - id: 7013 - time: '2024-07-30T13:53:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30391 -- author: Cojoke-dot - changes: - - message: QSI now swaps the top most valid container instead of QSI when placed - in an anchored container - type: Fix - id: 7014 - time: '2024-07-30T14:07:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30241 -- author: TheShuEd - changes: - - message: industrial ore processor can now process diamonds - type: Fix - id: 7015 - time: '2024-07-30T14:41:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30499 -- author: PJB3005 - changes: - - message: CLF3 is now called "chlorine trifluoride" - type: Tweak - id: 7016 - time: '2024-07-31T00:14:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30510 -- author: slarticodefast - changes: - - message: Fixed the mouse position when it is over a singularity distortion effect - while zoomed in or out. - type: Fix - id: 7017 - time: '2024-07-31T00:14:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30509 -- author: metalgearsloth - changes: - - message: Add a button to the lobby so you can export a .png of your characters - type: Add - id: 7018 - time: '2024-07-31T15:14:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29874 -- author: slarticodefast - changes: - - message: Skeletons no longer have fingerprints. - type: Tweak - id: 7019 - time: '2024-07-31T16:08:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30530 -- author: themias - changes: - - message: Pens can be clicked cathartically - type: Tweak - id: 7020 - time: '2024-07-31T17:57:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30531 -- author: Plykiya - changes: - - message: Meteors now leave behind asteroid rocks on impact. - type: Add - id: 7021 - time: '2024-08-01T02:55:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30419 -- author: PixelTheAertist - changes: - - message: The Social Anxiety trait is now renamed to "Stutter" - type: Tweak - id: 7022 - time: '2024-08-01T02:58:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29898 -- author: Plykiya - changes: - - message: Adds hand labelers to the PTech, ChemDrobe, and LawDrobe. - type: Add - id: 7023 - time: '2024-08-01T02:59:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29958 -- author: Ko4erga - changes: - - message: Added a cutter machine for crafting patterned steel tiles, concrete and - wooden tiles. - type: Add - - message: After rip off patterned tiles you get current pattern, not just steel - tile. - type: Tweak - id: 7024 - time: '2024-08-01T10:26:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30431 -- author: NakataRin - changes: - - message: Added paramedic to the train station. - type: Add - id: 7025 - time: '2024-08-01T19:59:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30556 -- author: marbow - changes: - - message: Rejoice, detectives! Hand labeler has been added to your closet! - type: Add - id: 7026 - time: '2024-08-01T20:01:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30501 -- author: metalgearsloth - changes: - - message: Fix some popups playing twice. - type: Fix - id: 7027 - time: '2024-08-02T01:33:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30452 -- author: WarMechanic - changes: - - message: Adjusted meteors to have less lethal blast fragments. - type: Tweak - id: 7028 - time: '2024-08-02T05:43:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29199 -- author: slarticodefast - changes: - - message: Fixed borgs not being able to state laws or open other UIs without an - active module. - type: Fix - id: 7029 - time: '2024-08-02T05:44:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30299 -- author: TropicalHibi - changes: - - message: Now fs (for sure) and wru (where are you) are changed to their full version - in text - type: Add - id: 7030 - time: '2024-08-02T05:57:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30508 -- author: Plykiya - changes: - - message: Rechargers now show the percent charged of the item it is charging. - type: Add - id: 7031 - time: '2024-08-02T06:05:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28500 -- author: ShadowCommander - changes: - - message: Rollerbeds now deploy when holding them in hand and clicking on the ground. - type: Add - id: 7032 - time: '2024-08-02T07:05:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30000 -- author: slarticodefast - changes: - - message: The digital audio workstation can now be rotated. - type: Tweak - id: 7033 - time: '2024-08-02T10:02:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30571 -- author: slarticodefast - changes: - - message: Added potassium iodide. It gives you short term radiation protection - and can be found in radiation treatment kits. - type: Add - - message: Added haloperidol. It removes most stimulating/hallucinogenic drugs from - the body and makes you drowsy. - type: Add - - message: Added the drowsiness status effect. It blurs your vision and makes you - randomly fall asleep. Drink some coffee or cola to remove it. - type: Add - - message: Chloral hydrate now makes you drowsy instead of forcing you to sleep - instantly. - type: Tweak - id: 7034 - time: '2024-08-02T17:12:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27454 -- author: Blackern5000 - changes: - - message: Winter boots no longer have ugly outlines - type: Tweak - id: 7035 - time: '2024-08-02T23:05:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30350 -- author: lzk228 - changes: - - message: Figurines will say phrases on activation. - type: Add - id: 7036 - time: '2024-08-03T14:06:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30455 -- author: JoelZimmerman - changes: - - message: Dank pizza is now cooked with cannabis leaves instead of ambrosia vulgaris. - type: Tweak - id: 7037 - time: '2024-08-03T14:07:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30430 -- author: Ian321 - changes: - - message: Help menus now include the linked guides. - type: Fix - id: 7038 - time: '2024-08-04T03:32:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30462 -- author: DrSmugleaf - changes: - - message: The Toggle Internals verb no longer shows up in the context menu if no - breathing tool is equipped and internals are off. - type: Tweak - id: 7039 - time: '2024-08-04T03:34:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30622 -- author: Mervill - changes: - - message: Rotten Meat can be collected in trash bags and deleted by the recycler - type: Tweak - id: 7040 - time: '2024-08-04T10:13:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30594 -- author: DrSmugleaf - changes: - - message: Fixed the client sometimes falsely showing the red color flash effect - when attacking something that they can't, like allied xenonids. - type: Fix - id: 7041 - time: '2024-08-05T03:14:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30661 -- author: Killerqu00 - changes: - - message: Sleeper agents event no longer occurs when evacuation is called. - type: Tweak - id: 7042 - time: '2024-08-05T03:17:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30646 -- author: Cojoke-dot - changes: - - message: Mice can now use combat mode with a 0 damage attack - type: Tweak - id: 7043 - time: '2024-08-05T03:26:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30487 -- author: TheShuEd - changes: - - message: Nanotrasen has introduced recruitment rules. Characters under the age - of 20 are no longer allowed to take on the role of head. - type: Tweak - id: 7044 - time: '2024-08-05T04:25:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30347 -- author: foboscheshir - changes: - - message: added missing mime mask sprites for Vox - scared and sad. - type: Add - id: 7045 - time: '2024-08-05T06:09:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30607 -- author: SlamBamActionman, PolarTundra - changes: - - message: Thief's Syndie Kit now comes with a Radio Jammer, a lighter and a Syndicate - codeword. - type: Add - - message: Thief's Agent ID has been moved from the Syndie Kit to the Chameleon - Kit. - type: Tweak - - message: The Syndicate pAI has been removed from the Thief's Syndie Kit. - type: Remove - id: 7046 - time: '2024-08-05T08:03:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30446 -- author: EmoGarbage404 - changes: - - message: Being cold now slows down your character. - type: Add - id: 7047 - time: '2024-08-05T08:07:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29692 -- author: EmoGarbage404 - changes: - - message: The biogenerator has been recolored and renamed to the "biocube fabricator." - type: Tweak - id: 7048 - time: '2024-08-06T10:51:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30696 -- author: Errant - changes: - - message: Vox can be nukies and ninjas again. - type: Tweak - id: 7049 - time: '2024-08-06T10:58:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29783 -- author: slarticodefast - changes: - - message: Fixed borgs, animals and aghosts being able to enter cryosleep. - type: Fix - id: 7050 - time: '2024-08-06T11:00:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30574 -- author: Flareguy - changes: - - message: Most hats are now automatically displaced on vox to look more fitting. - type: Tweak - id: 7051 - time: '2024-08-06T13:12:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30699 - author: Errant changes: - message: Medical Mask sprite now works on vox. @@ -3952,3 +3559,403 @@ id: 7500 time: '2024-10-10T14:35:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32700 +- author: pheenty + changes: + - message: Quartermaster now has external access + type: Add + id: 7501 + time: '2024-10-13T04:55:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32631 +- author: Golinth + changes: + - message: Firebots can no longer become sentient via the sentience event. + type: Remove + id: 7502 + time: '2024-10-13T04:55:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32629 +- author: BramvanZijp + changes: + - message: The playtime requirements for station AI have been increased. + type: Tweak + - message: The playtime requirements to play borg have been slightly decreased. + type: Tweak + id: 7503 + time: '2024-10-13T06:38:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32007 +- author: SkaldetSkaeg + changes: + - message: Sleepers can no longer use emotions + type: Fix + id: 7504 + time: '2024-10-13T08:22:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32779 +- author: SlamBamActionman + changes: + - message: Added a new Safety MothTM poster about being SSD! + type: Add + id: 7505 + time: '2024-10-13T11:25:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32736 +- author: K-Dynamic + changes: + - message: Added rainbow lizard plushies, which can be found in arcade machines. + type: Add + id: 7506 + time: '2024-10-13T22:51:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32564 +- author: PJB3005 + changes: + - message: Fixes the client sometimes not being aware of active role bans. + type: Fix + id: 7507 + time: '2024-10-14T03:30:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32725 +- author: OnyxTheBrave + changes: + - message: Fixed the Industrial Reagent Grinder's visuals + type: Fix + id: 7508 + time: '2024-10-14T03:53:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32758 +- author: irismessage + changes: + - message: Made role requirements display in a more understandable format. + type: Tweak + id: 7509 + time: '2024-10-14T03:54:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32806 +- author: Gamer3107 + changes: + - message: Portal artifacts no longer target the AI or people within containers + type: Fix + id: 7510 + time: '2024-10-14T05:55:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32677 +- author: ScarKy0 + changes: + - message: Cyborg modules now have icons instead of using the module sprite. + type: Add + id: 7511 + time: '2024-10-14T07:05:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32505 +- author: metalgearsloth + changes: + - message: Fix tech anomalies firing every tick. + type: Fix + id: 7512 + time: '2024-10-14T07:06:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32805 +- author: ada-please + changes: + - message: Added more prizes to the Space Villain arcade machine + type: Add + id: 7513 + time: '2024-10-14T21:59:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32309 +- author: K-Dynamic + changes: + - message: Added nitrogen tanks to engineering tank dispensers. + type: Add + id: 7514 + time: '2024-10-15T08:28:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32565 +- author: slarticodefast + changes: + - message: Fixed inconsistent solution transfer amounts from spray bottles to plant + holders. + type: Fix + id: 7515 + time: '2024-10-16T03:57:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32813 +- author: Minemoder, ArtisticRoomba, Sarahon + changes: + - message: Reptiles and Kobolds can now thump their tail. + type: Add + id: 7516 + time: '2024-10-16T10:04:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32064 +- author: deltanedas + changes: + - message: Fixed grappling hooks sometimes getting bricked. + type: Fix + id: 7517 + time: '2024-10-16T22:32:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32738 +- author: SlamBamActionman + changes: + - message: The Microphone instrument has a new vocal style "Kweh". + type: Add + id: 7518 + time: '2024-10-17T01:57:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32848 +- author: deltanedas + changes: + - message: You can now eject biomass from a biogenerator without having to deconstruct + it. + type: Tweak + id: 7519 + time: '2024-10-17T03:12:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32854 +- author: lzk228 + changes: + - message: Fixed holosign projectors power cell popups. + type: Fix + id: 7520 + time: '2024-10-17T03:21:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32808 +- author: Kickguy223 + changes: + - message: As an AI, Having a Lawboard inserted into your AI Upload Computer will + now Play a sound cue + type: Add + - message: As an AI, Having the Antimov Lawboard uploaded will play an appropriate + sound cue + type: Add + id: 7521 + time: '2024-10-17T03:41:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32625 +- author: Callmore + changes: + - message: Prefered item quick store locations can be created again. + type: Fix + id: 7522 + time: '2024-10-17T04:00:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32480 +- author: Myra + changes: + - message: The game's title bar window will display the name of the server you have + joined (unless disabled). + type: Add + id: 7523 + time: '2024-10-17T11:06:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32547 +- author: Aeshus + changes: + - message: Emote shorthands (like "lol" or ":)") sent in chat are detected throughout + the whole message. Note that only the last shorthand in the message will be + emoted. + type: Tweak + id: 7524 + time: '2024-10-17T14:01:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28645 +- author: slarticodefast + changes: + - message: Fixed the playtime stats window not showing entries correctly. + type: Fix + id: 7525 + time: '2024-10-17T21:32:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32856 +- author: Thatonestomf + changes: + - message: Smile no longer has a ghost role raffle attached to her + type: Fix + id: 7526 + time: '2024-10-18T02:42:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32837 +- author: Catofquestionableethics + changes: + - message: Spacemans cake now contains Polypyrylium Oligomers instead of Omnizine. + type: Tweak + - message: Slime, Brain and Christmas cakes can now be eaten by Lizards. + type: Fix + id: 7527 + time: '2024-10-18T03:08:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32830 +- author: Plykiya + changes: + - message: You can no longer print flares or shotgun flares. + type: Remove + id: 7528 + time: '2024-10-18T03:28:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32563 +- author: pheenty + changes: + - message: QM is now considered an important job. + type: Tweak + - message: QM is now correctly considered head for traitor's kill head objective, + while warden now isn't. + type: Fix + id: 7529 + time: '2024-10-18T09:43:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32721 +- author: JIPDawg + changes: + - message: On Salamander the round will now restart after 5 minutes from when the + Evac shuttle arrives at CentCom. + type: Tweak + id: 7530 + time: '2024-10-18T10:03:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32776 +- author: Errant + changes: + - message: Players becoming Traitor without a PDA now correctly get the text and + audio notifications, and the code words. They are also given an Uplink Implant, + with the price taken from their starting TC. + type: Fix + id: 7531 + time: '2024-10-18T12:55:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30359 +- author: Beck Thompson + changes: + - message: Plushies will now eject their contents when recycled in the recycler! + type: Fix + id: 7532 + time: '2024-10-18T12:58:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32838 +- author: Ilya246 + changes: + - message: Spectral locator, rare maintenance loot that lets you know if any ghosts + are nearby. + type: Add + id: 7533 + time: '2024-10-18T13:42:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32323 +- author: PJB3005 + changes: + - message: You can now start removing items via stripping while holding something. + type: Tweak + id: 7534 + time: '2024-10-18T19:20:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32750 +- author: Beck Thompson + changes: + - message: Scalpels and shivs now work as knives! + type: Add + id: 7535 + time: '2024-10-19T02:40:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32858 +- author: PJB3005 + changes: + - message: Fix more performance issues on long-running game servers, hopefully. + type: Fix + id: 7536 + time: '2024-10-19T14:51:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32897 +- author: insoPL + changes: + - message: Zombies once again have zombie blood. + type: Fix + id: 7537 + time: '2024-10-19T15:31:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32532 +- author: Beck Thompson + changes: + - message: When MMIs and positronic brains are inserted into plushies, their names + will be updated to the plushies name (Exactly the same way pAIs do). + type: Add + id: 7538 + time: '2024-10-20T02:46:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32914 +- author: Calecute + changes: + - message: wide attacks that deal blunt damage will now deal stamina damage. + type: Fix + id: 7539 + time: '2024-10-20T03:41:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32422 +- author: Thatonestomf + changes: + - message: Mute toxin now mutes even after is metabolized, similar to glue + type: Tweak + - message: Mute toxin is now even more powerful at muting people + type: Tweak + id: 7540 + time: '2024-10-21T03:43:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32915 +- author: MendaxxDev + changes: + - message: Fixed typing sound playing when AI or admin ghosts interacted with consoles. + type: Fix + id: 7541 + time: '2024-10-21T03:50:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32906 +- author: NoElkaTheGod + changes: + - message: Station AI can now interact with long range fax machines. + type: Tweak + id: 7542 + time: '2024-10-21T12:44:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32929 +- author: Southbridge + changes: + - message: Box Station's window between the containment room and TEG has been upgraded + to plasma. + type: Fix + - message: Box Station's Engineering storage room air alarm has been properly connected + to nearby devices. + type: Fix + - message: Box Station's Janitorial disposal chute has been replaced with a working + one. + type: Fix + id: 7543 + time: '2024-10-22T05:39:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32950 +- author: Moomoobeef + changes: + - message: Ammo-boxes no longer appear empty when only one bullet is removed. + type: Fix + id: 7544 + time: '2024-10-22T09:00:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32930 +- author: ScarKy0 + changes: + - message: Added the syringe gun and it's respective ammo. Currently Admeme only. + type: Add + id: 7545 + time: '2024-10-22T13:03:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32112 +- author: ScarKy0, Fildrance + changes: + - message: Using an intellicard on the AI core now swaps the AI between the core + and intellicard. (You can evac with the AI!) + type: Add + - message: Added an intellicard to the RD's locker. + type: Add + id: 7546 + time: '2024-10-22T13:49:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32347 +- author: Southbridge + changes: + - message: Nuclear Cola can now be broken down in a centrifuge. + type: Add + id: 7547 + time: '2024-10-22T17:01:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32441 +- author: BramvanZijp + changes: + - message: The Space Ninja Suit will now give an error popup if you are trying to + install a cell that is not better compared to the current cell. + type: Add + - message: When comparing which power cell is better when trying to swap them, the + Space Ninja's Suit will now also consider if the power cells have self-recharge + capability. + type: Tweak + - message: You can no longer fit weapons-grade power cages into the space ninja + suit. + type: Fix + id: 7548 + time: '2024-10-22T23:36:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32902 +- author: UBlueberry + changes: + - message: The appraisal tool now has in-hand sprites! + type: Fix + id: 7549 + time: '2024-10-22T23:51:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32849 +- author: chromiumboy + changes: + - message: The atmospheric alerts computer has been upgraded to visually indicate + the rooms of the station that are being monitored by its air and fire alarm + systems + type: Tweak + id: 7550 + time: '2024-10-23T12:49:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31910 +- author: hyphenationc + changes: + - message: Snake meat is now properly considered Meat, so Lizards can eat it. + type: Fix + id: 7551 + time: '2024-10-24T03:41:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32965 diff --git a/Resources/ConfigPresets/WizardsDen/leviathan.toml b/Resources/ConfigPresets/WizardsDen/leviathan.toml index 7560833f13..a1a0e5b704 100644 --- a/Resources/ConfigPresets/WizardsDen/leviathan.toml +++ b/Resources/ConfigPresets/WizardsDen/leviathan.toml @@ -4,10 +4,6 @@ [game] hostname = "[EN] Wizard's Den Leviathan [US East 1]" -panic_bunker.enabled = false -panic_bunker.disable_with_admins = false -panic_bunker.enable_without_admins = false -panic_bunker.custom_reason = "" [hub] tags = "lang:en,region:am_n_e,rp:low" diff --git a/Resources/ConfigPresets/WizardsDen/salamander.toml b/Resources/ConfigPresets/WizardsDen/salamander.toml index 676deec96d..e233dd95ca 100644 --- a/Resources/ConfigPresets/WizardsDen/salamander.toml +++ b/Resources/ConfigPresets/WizardsDen/salamander.toml @@ -3,6 +3,7 @@ [game] desc = "Official English Space Station 14 servers. Medium roleplay ruleset. you must be whitelisted by playing on other Wizard's Den servers if there are more than 15 online players." hostname = "[EN] Wizard's Den Salamander [US West RP]" +round_restart_time = 300 [server] rules_file = "MRPRuleset" diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 077ff3fe40..2b059ca40e 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -4,12 +4,12 @@ [game] desc = "Official English Space Station 14 servers. Vanilla, roleplay ruleset." lobbyenabled = true -soft_max_players = 80 +soft_max_players = 70 panic_bunker.enabled = true panic_bunker.disable_with_admins = true panic_bunker.enable_without_admins = true panic_bunker.show_reason = true -panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard, Leviathan, or Farm Grass Hopper until you have more playtime." +panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard or Farm Grass Hopper until you have more playtime." [infolinks] bug_report = "https://github.com/space-wizards/space-station-14/issues/new/choose" diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index b18c4646ed..e00d7c78a6 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, CatTheSystem, Centronias, chairbender, Charlese2, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DakotaGay, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, JoeHammad1844, joelsgp, JohnGinnane, johnku1, Jophire, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, koteq, KrasnoshchekovPavel, Krunklehorn, Kukutis96513, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, Phill101, phunnyguy, pigeonpeas, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, Soydium, SpaceManiac, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, Theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zylofan, Zymem, zzylex +0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, irismessage, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, SpaceLizardSky, SpaceManiac, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zylofan, Zymem, zzylex diff --git a/Resources/Locale/en-US/_lib.ftl b/Resources/Locale/en-US/_lib.ftl index c901d0f461..5c6f73af66 100644 --- a/Resources/Locale/en-US/_lib.ftl +++ b/Resources/Locale/en-US/_lib.ftl @@ -31,3 +31,6 @@ zzzz-fmt-power-joules = { TOSTRING($divided, "F1") } { $places -> [4] TJ *[5] ??? } + +# Used internally by the PLAYTIME() function. +zzzz-fmt-playtime = {$hours}H {$minutes}M \ No newline at end of file diff --git a/Resources/Locale/en-US/administration/smites.ftl b/Resources/Locale/en-US/administration/smites.ftl index e77725765b..57d8660fae 100644 --- a/Resources/Locale/en-US/administration/smites.ftl +++ b/Resources/Locale/en-US/administration/smites.ftl @@ -20,42 +20,42 @@ admin-smite-explode-name = Explode admin-smite-chess-dimension-name = Chess Dimension admin-smite-set-alight-name = Set Alight admin-smite-monkeyify-name = Monkeyify -admin-smite-electrocute-name = Garbage Can -admin-smite-creampie-name = Electrocute -admin-smite-remove-blood-name = Creampie -admin-smite-vomit-organs-name = Remove blood -admin-smite-remove-hands-name = Vomit organs -admin-smite-remove-hand-name = Remove hands -admin-smite-pinball-name = Remove hand -admin-smite-yeet-name = Stomach Removal -admin-smite-become-bread-name = Lungs Removal -admin-smite-ghostkick-name = Pinball -admin-smite-nyanify-name = Yeet -admin-smite-kill-sign-name = Become Bread -admin-smite-cluwne-name = Become Mouse -admin-smite-anger-pointing-arrows-name = Ghostkick -admin-smite-dust-name = Nyanify -admin-smite-buffering-name = Kill sign -admin-smite-become-instrument-name = Cluwne -admin-smite-remove-gravity-name = Maid -admin-smite-reptilian-species-swap-name = Anger Pointing Arrows -admin-smite-locker-stuff-name = Dust -admin-smite-headstand-name = Buffering -admin-smite-become-mouse-name = Become Instrument -admin-smite-maid-name = Remove gravity -admin-smite-zoom-in-name = Reptilian Species Swap -admin-smite-flip-eye-name = Locker stuff -admin-smite-run-walk-swap-name = Headstand -admin-smite-super-speed-name = Zoom in -admin-smite-stomach-removal-name = Flip eye -admin-smite-speak-backwards-name = Run Walk Swap -admin-smite-lung-removal-name = Speak Backwards +admin-smite-garbage-can-name = Garbage Can +admin-smite-electrocute-name = Electrocute +admin-smite-remove-blood-name = Remove blood +admin-smite-remove-hands-name = Remove hands +admin-smite-remove-hand-name = Remove hand +admin-smite-pinball-name = Pinball +admin-smite-yeet-name = Yeet +admin-smite-become-bread-name = Become Bread +admin-smite-cluwne-name = Cluwne +admin-smite-anger-pointing-arrows-name = Anger Pointing Arrows +admin-smite-dust-name = Dust +admin-smite-buffering-name = Buffering +admin-smite-become-instrument-name = Become Instrument +admin-smite-remove-gravity-name = Remove Gravity +admin-smite-reptilian-species-swap-name = Become Reptilian +admin-smite-locker-stuff-name = Locker Stuff +admin-smite-headstand-name = Headstand +admin-smite-become-mouse-name = Become Mouse +admin-smite-maid-name = Cat Maid +admin-smite-zoom-in-name = Zoom In +admin-smite-flip-eye-name = Flip Eye +admin-smite-run-walk-swap-name = Run Walk Swap +admin-smite-super-speed-name = Run Up +admin-smite-stomach-removal-name = Stomach Removal +admin-smite-speak-backwards-name = Speak Backwards +admin-smite-lung-removal-name = Lungs Removal admin-smite-disarm-prone-name = Disarm Prone -admin-smite-garbage-can-name = Super speed -admin-smite-super-bonk-name = Super Bonk Lite -admin-smite-super-bonk-lite-name = Super Bonk +admin-smite-super-bonk-name = Super Bonk +admin-smite-super-bonk-lite-name = Super Bonk Lite admin-smite-terminate-name = Terminate admin-smite-super-slip-name = Super Slip +admin-smite-creampie-name = Cream +admin-smite-vomit-organs-name = Vomit Organs +admin-smite-ghostkick-name = Ghost Kick +admin-smite-nyanify-name = Cat Ears +admin-smite-kill-sign-name = Kill Sign ## Smite descriptions diff --git a/Resources/Locale/en-US/advertisements/other/firebot.ftl b/Resources/Locale/en-US/advertisements/other/firebot.ftl new file mode 100644 index 0000000000..c614d5ecd0 --- /dev/null +++ b/Resources/Locale/en-US/advertisements/other/firebot.ftl @@ -0,0 +1,4 @@ +advertisement-firebot-1 = No fires detected. +advertisement-firebot-2 = Only you can prevent station fires. +advertisement-firebot-3 = Temperature nominal. +advertisement-firebot-4 = Keep it cool. \ 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 a1640c5e9d..470a8f8695 100644 --- a/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl +++ b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl @@ -25,7 +25,7 @@ atmos-alerts-window-warning-state = Warning atmos-alerts-window-danger-state = Danger! atmos-alerts-window-invalid-state = Inactive -atmos-alerts-window-no-active-alerts = [font size=16][color=white]No active alerts -[/color] [color={$color}]situation normal[/color][/font] +atmos-alerts-window-no-active-alerts = [font size=16][color=white]No active alerts -[/color] [color={$color}]Situation normal[/color][/font] atmos-alerts-window-no-data-available = No data available atmos-alerts-window-alerts-being-silenced = Silencing alerts... diff --git a/Resources/Locale/en-US/botany/components/plant-holder-component.ftl b/Resources/Locale/en-US/botany/components/plant-holder-component.ftl index 0e8c4137f4..ca20c277f5 100644 --- a/Resources/Locale/en-US/botany/components/plant-holder-component.ftl +++ b/Resources/Locale/en-US/botany/components/plant-holder-component.ftl @@ -8,8 +8,6 @@ plant-holder-component-no-weeds-message = This plot is devoid of weeds! It doesn plant-holder-component-remove-plant-message = You remove the plant from the {$name}. plant-holder-component-remove-plant-others-message = {$name} removes the plant. plant-holder-component-no-plant-message = There is no plant to remove. -plant-holder-component-empty-message = {$owner} is empty! -plant-holder-component-spray-message = You spray {$owner}. plant-holder-component-transfer-message = You transfer {$amount}u to {$owner}. plant-holder-component-nothing-to-sample-message = There is nothing to take a sample of! plant-holder-component-already-sampled-message = This plant has already been sampled. diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl index cccb33a1f1..8c74acafca 100644 --- a/Resources/Locale/en-US/chat/emotes.ftl +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -8,6 +8,7 @@ chat-emote-name-crying = Crying chat-emote-name-squish = Squish chat-emote-name-chitter = Chitter chat-emote-name-squeak = Squeak +chat-emote-name-thump = Thump Tail chat-emote-name-click = Click chat-emote-name-clap = Clap chat-emote-name-snap = Snap @@ -40,6 +41,7 @@ chat-emote-msg-crying = cries. chat-emote-msg-squish = squishes. chat-emote-msg-chitter = chitters. chat-emote-msg-squeak = squeaks. +chat-emote-msg-thump = thumps {POSS-ADJ($entity)} tail. chat-emote-msg-click = clicks. chat-emote-msg-clap = claps! chat-emote-msg-snap = snaps {POSS-ADJ($entity)} fingers. diff --git a/Resources/Locale/en-US/entity-categories.ftl b/Resources/Locale/en-US/entity-categories.ftl index 6067830b7a..4b6cf87942 100644 --- a/Resources/Locale/en-US/entity-categories.ftl +++ b/Resources/Locale/en-US/entity-categories.ftl @@ -1,3 +1,5 @@ entity-category-name-actions = Actions entity-category-name-game-rules = Game Rules -entity-category-name-objectives = Objectives \ No newline at end of file +entity-category-name-objectives = Objectives +entity-category-name-roles = Mind Roles +entity-category-name-mapping = Mapping diff --git a/Resources/Locale/en-US/forensics/fibers.ftl b/Resources/Locale/en-US/forensics/fibers.ftl index 53cfe5e7c1..72eae55e38 100644 --- a/Resources/Locale/en-US/forensics/fibers.ftl +++ b/Resources/Locale/en-US/forensics/fibers.ftl @@ -25,3 +25,7 @@ fibers-white = white fibers-yellow = yellow fibers-regal-blue = regal blue fibers-olive = olive +fibers-silver = silver +fibers-gold = gold +fibers-maroon = maroon +fibers-pink = pink diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl index fd3e6b82aa..cf2f2b1130 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl @@ -26,7 +26,7 @@ traitor-death-match-end-round-description-entry = {$originalName}'s PDA, with {$ traitor-role-greeting = You are an agent sent by {$corporation} on behalf of [color = darkred]The Syndicate.[/color] Your objectives and codewords are listed in the character menu. - Use the uplink loaded into your PDA to buy the tools you'll need for this mission. + Use your uplink to buy the tools you'll need for this mission. Death to Nanotrasen! traitor-role-codewords = The codewords are: [color = lightgray] @@ -36,9 +36,13 @@ traitor-role-codewords = traitor-role-uplink-code = Set your ringtone to the notes [color = lightgray]{$code}[/color] to lock or unlock your uplink. Remember to lock it after, or the stations crew will easily open it too! +traitor-role-uplink-implant = + Your uplink implant has been activated, access it from your hotbar. + The uplink is secure unless someone removes it from your body. # don't need all the flavour text for character menu traitor-role-codewords-short = The codewords are: {$codewords}. traitor-role-uplink-code-short = Your uplink code is {$code}. Set it as your PDA ringtone to access uplink. +traitor-role-uplink-implant-short = Your uplink was implanted. Access it from your hotbar. diff --git a/Resources/Locale/en-US/info/playtime-stats.ftl b/Resources/Locale/en-US/info/playtime-stats.ftl index 44ba39c25e..b4925176a7 100644 --- a/Resources/Locale/en-US/info/playtime-stats.ftl +++ b/Resources/Locale/en-US/info/playtime-stats.ftl @@ -2,9 +2,8 @@ ui-playtime-stats-title = User Playtime Stats ui-playtime-overall-base = Overall Playtime: -ui-playtime-overall = Overall Playtime: {$time} +ui-playtime-overall = Overall Playtime: {PLAYTIME($time)} ui-playtime-first-time = First Time Playing ui-playtime-roles = Playtime per Role -ui-playtime-time-format = {$hours}H {$minutes}M ui-playtime-header-role-type = Role ui-playtime-header-role-time = Time diff --git a/Resources/Locale/en-US/job/job-supervisors.ftl b/Resources/Locale/en-US/job/job-supervisors.ftl index c7eedfd246..b7615903ee 100644 --- a/Resources/Locale/en-US/job/job-supervisors.ftl +++ b/Resources/Locale/en-US/job/job-supervisors.ftl @@ -12,4 +12,4 @@ job-supervisors-medicine = Medical Doctors, Paramedics, Chemists, and the Chief job-supervisors-security = Security Officers, the Warden, and the Head of Security job-supervisors-science = Scientists and the Research Director job-supervisors-hire = whoever hires you -job-supervisors-everyone = absolutely everyone +job-supervisors-everyone = absolutely everyone \ No newline at end of file diff --git a/Resources/Locale/en-US/job/role-requirements.ftl b/Resources/Locale/en-US/job/role-requirements.ftl index 00281fa6cd..686fcb93cb 100644 --- a/Resources/Locale/en-US/job/role-requirements.ftl +++ b/Resources/Locale/en-US/job/role-requirements.ftl @@ -1,11 +1,11 @@ -role-timer-department-insufficient = You require [color=yellow]{TOSTRING($time, "0")}[/color] more minutes of [color={$departmentColor}]{$department}[/color] department playtime to play this role. -role-timer-department-too-high = You require [color=yellow]{TOSTRING($time, "0")}[/color] fewer minutes in [color={$departmentColor}]{$department}[/color] department to play this role. (Are you trying to play a trainee role?) -role-timer-overall-insufficient = You require [color=yellow]{TOSTRING($time, "0")}[/color] more minutes of playtime to play this role. -role-timer-overall-too-high = You require [color=yellow]{TOSTRING($time, "0")}[/color] fewer minutes of playtime to play this role. (Are you trying to play a trainee role?) -role-timer-role-insufficient = You require [color=yellow]{TOSTRING($time, "0")}[/color] more minutes with [color={$departmentColor}]{$job}[/color] to play this role. -role-timer-role-too-high = You require[color=yellow] {TOSTRING($time, "0")}[/color] fewer minutes with [color={$departmentColor}]{$job}[/color] to play this role. (Are you trying to play a trainee role?) -role-timer-age-to-old = Your character's age must be at most [color=yellow]{$age}[/color] to play this role. -role-timer-age-to-young = Your character's age must be at least [color=yellow]{$age}[/color] to play this role. +role-timer-department-insufficient = You require [color=yellow]{$time}[/color] more playtime in the [color={$departmentColor}]{$department}[/color] department to play this role. +role-timer-department-too-high = You require [color=yellow]{$time}[/color] less playtime in the [color={$departmentColor}]{$department}[/color] department to play this role. (Are you trying to play a trainee role?) +role-timer-overall-insufficient = You require [color=yellow]{$time}[/color] more overall playtime to play this role. +role-timer-overall-too-high = You require [color=yellow]{$time}[/color] less overall playtime to play this role. (Are you trying to play a trainee role?) +role-timer-role-insufficient = You require [color=yellow]{$time}[/color] more playtime with [color={$departmentColor}]{$job}[/color] to play this role. +role-timer-role-too-high = You require[color=yellow] {$time}[/color] less playtime with [color={$departmentColor}]{$job}[/color] to play this role. (Are you trying to play a trainee role?) +role-timer-age-too-old = Your character must be under the age of [color=yellow]{$age}[/color] to play this role. +role-timer-age-too-young = Your character must be over the age of [color=yellow]{$age}[/color] to play this role. role-timer-whitelisted-species = Your character must be one of the following species to play this role: role-timer-blacklisted-species = Your character must not be one of the following species to play this role: role-timer-whitelisted-traits = Your character must have one of the following traits: diff --git a/Resources/Locale/en-US/ninja/ninja-actions.ftl b/Resources/Locale/en-US/ninja/ninja-actions.ftl index f01f02a60e..b3e295b7a2 100644 --- a/Resources/Locale/en-US/ninja/ninja-actions.ftl +++ b/Resources/Locale/en-US/ninja/ninja-actions.ftl @@ -1,6 +1,8 @@ ninja-no-power = Not enough charge in suit battery! ninja-revealed = You have been revealed! ninja-suit-cooldown = The suit needs time to recuperate from the last attack. +ninja-cell-downgrade = The suit will only accept a new power cell that is better than the current one! +ninja-cell-too-large = This power source does not fit in the ninja suit! ninja-research-steal-fail = No new research nodes were stolen... ninja-research-steal-success = Stole {$count} new nodes from {THE($server)}. diff --git a/Resources/Locale/en-US/reagents/meta/elements.ftl b/Resources/Locale/en-US/reagents/meta/elements.ftl index 6d6439565b..b5ef028bed 100644 --- a/Resources/Locale/en-US/reagents/meta/elements.ftl +++ b/Resources/Locale/en-US/reagents/meta/elements.ftl @@ -61,8 +61,5 @@ reagent-desc-sodium = A silvery-white alkali metal. Highly reactive in its pure reagent-name-uranium = uranium reagent-desc-uranium = A grey metallic chemical element in the actinide series, weakly radioactive. -reagent-name-bananium = bananium -reagent-desc-bananium = A yellow radioactive organic solid. - reagent-name-zinc = zinc -reagent-desc-zinc = A silvery, brittle metal, often used in batteries to carry charge. \ No newline at end of file +reagent-desc-zinc = A silvery, brittle metal, often used in batteries to carry charge. diff --git a/Resources/Locale/en-US/server-updates/server-updates.ftl b/Resources/Locale/en-US/server-updates/server-updates.ftl index 72047432bb..ae775c9931 100644 --- a/Resources/Locale/en-US/server-updates/server-updates.ftl +++ b/Resources/Locale/en-US/server-updates/server-updates.ftl @@ -1,2 +1,3 @@ server-updates-received = Update has been received, server will automatically restart for update at the end of this round. server-updates-shutdown = Server is shutting down for update and will automatically restart. +server-updates-shutdown-uptime = Server is shutting down for periodic cleanup and will automatically restart. diff --git a/Resources/Locale/en-US/shuttles/commands.ftl b/Resources/Locale/en-US/shuttles/commands.ftl new file mode 100644 index 0000000000..37583568e7 --- /dev/null +++ b/Resources/Locale/en-US/shuttles/commands.ftl @@ -0,0 +1,14 @@ +# FTLdiskburner +cmd-ftldisk-desc = Creates an FTL coordinates disk to sail to the map the given EntityID is/on +cmd-ftldisk-help = ftldisk [EntityID] + +cmd-ftldisk-no-transform = Entity {$destination} has no Transform Component! +cmd-ftldisk-no-map = Entity {$destination} has no map! +cmd-ftldisk-no-map-comp = Entity {$destination} is somehow on map {$map} with no map component. +cmd-ftldisk-map-not-init = Entity {$destination} is on map {$map} which is not initialized! Check it's safe to initialize, then initialize the map first or the players will be stuck in place! +cmd-ftldisk-map-paused = Entity {$desintation} is on map {$map} which is paused! Please unpause the map first or the players will be stuck in place. +cmd-ftldisk-planet = Entity {$desintation} is on planet map {$map} and will require an FTL point. It may already exist. +cmd-ftldisk-already-dest-not-enabled = Entity {$destination} is on map {$map} that already has an FTLDestinationComponent, but it is not Enabled! Set this manually for safety. +cmd-ftldisk-requires-ftl-point = Entity {$destination} is on map {$map} that requires a FTL point to travel to! It may already exist. + +cmd-ftldisk-hint = Map netID diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index e0864de41b..b3ea4b7251 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -449,5 +449,5 @@ uplink-cameraBug-desc = A portable device that allows you to view the station's uplink-combat-bakery-name = Combat Bakery Kit uplink-combat-bakery-desc = A kit of clandestine baked weapons. Contains a baguette sword, a pair of throwing croissants, and a syndicate microwave board for making more. Once the job is done, eat the evidence. -uplink-business-card-name = Syndicate business card. +uplink-business-card-name = Syndicate Business Card uplink-business-card-desc = A business card that you can give to someone to demonstrate your involvement in the syndicate or leave at the crime scene in order to make fun of the detective. You can buy no more than three of them. diff --git a/Resources/Maps/Shuttles/emergency_omega.yml b/Resources/Maps/Shuttles/emergency_omega.yml index e3e6f680bf..bf87c0d219 100644 --- a/Resources/Maps/Shuttles/emergency_omega.yml +++ b/Resources/Maps/Shuttles/emergency_omega.yml @@ -17,7 +17,7 @@ entities: - uid: 603 components: - type: MetaData - name: NT Evac Box + name: NT Evac Omega - type: Transform pos: 2.2710133,-2.4148211 parent: invalid @@ -3155,6 +3155,38 @@ entities: - type: Transform pos: -1.5,0.5 parent: 603 +- proto: Screen + entities: + - uid: 606 + components: + - type: Transform + pos: -2.5,10.5 + parent: 603 + - uid: 607 + components: + - type: Transform + pos: 5.5,4.5 + parent: 603 + - uid: 608 + components: + - type: Transform + pos: 5.5,8.5 + parent: 603 + - uid: 609 + components: + - type: Transform + pos: -10.5,8.5 + parent: 603 + - uid: 610 + components: + - type: Transform + pos: -10.5,4.5 + parent: 603 + - uid: 611 + components: + - type: Transform + pos: -2.5,1.5 + parent: 603 - proto: SheetSteel entities: - uid: 573 diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 3adc976783..2918b26110 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -10019,6 +10019,11 @@ entities: - type: Transform pos: -14.5,-67.5 parent: 8364 + - type: DeviceList + devices: + - 5463 + - 5462 + - 1860 - uid: 26908 components: - type: Transform @@ -11579,7 +11584,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -16708.217 + secondsUntilStateChange: -18243.016 state: Opening - type: DeviceLinkSource lastSignals: @@ -13271,6 +13276,9 @@ entities: - type: Transform pos: -11.5,-68.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - uid: 14486 components: - type: Transform @@ -19614,6 +19622,11 @@ entities: - type: Transform pos: 2.5,-13.5 parent: 8364 + - uid: 8185 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 8364 - uid: 8383 components: - type: Transform @@ -81253,11 +81266,6 @@ entities: - type: Transform pos: 70.5,-43.5 parent: 8364 - - uid: 21936 - components: - - type: Transform - pos: 2.5,-36.5 - parent: 8364 - uid: 25921 components: - type: Transform @@ -81280,6 +81288,11 @@ entities: - type: Transform pos: 11.5,-68.5 parent: 8364 + - uid: 27920 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 8364 - proto: DisposalYJunction entities: - uid: 6145 @@ -84418,7 +84431,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -10896.755 + secondsUntilStateChange: -12431.553 state: Closing - uid: 15010 components: @@ -84911,7 +84924,7 @@ entities: pos: -4.5,-71.5 parent: 8364 - type: Door - secondsUntilStateChange: -2644.4858 + secondsUntilStateChange: -4179.284 state: Closing - proto: Fireplace entities: @@ -110589,6 +110602,9 @@ entities: - type: Transform pos: -15.5,-68.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7282 @@ -112049,6 +112065,9 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-69.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - uid: 7284 components: - type: Transform @@ -133757,6 +133776,11 @@ entities: - type: Transform pos: 17.5,-51.5 parent: 8364 + - uid: 17697 + components: + - type: Transform + pos: 10.5,-81.5 + parent: 8364 - uid: 17718 components: - type: Transform @@ -133777,6 +133801,11 @@ entities: - type: Transform pos: 17.5,-50.5 parent: 8364 + - uid: 21936 + components: + - type: Transform + pos: 10.5,-80.5 + parent: 8364 - uid: 22830 components: - type: Transform @@ -137215,12 +137244,6 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 8364 - - uid: 8185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-81.5 - parent: 8364 - uid: 8207 components: - type: Transform @@ -138045,12 +138068,6 @@ entities: - type: Transform pos: 25.5,-75.5 parent: 8364 - - uid: 17697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-80.5 - parent: 8364 - uid: 17787 components: - type: Transform diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index 883efbb967..c2c8087bf8 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -18851,6 +18851,8 @@ entities: linkedPorts: 722: - CloningPodSender: CloningPodReceiver + 723: + - MedicalScannerSender: MedicalScannerReceiver - proto: ComputerComms entities: - uid: 652 @@ -27708,6 +27710,13 @@ entities: - type: Transform pos: -17.485325,-31.461966 parent: 1668 +- proto: NetworkConfigurator + entities: + - uid: 1461 + components: + - type: Transform + pos: 13.484868,-12.584605 + parent: 1668 - proto: NitrogenCanister entities: - uid: 5413 diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 30b4730a57..384c60f599 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -81,143 +81,143 @@ entities: chunks: 0,0: ind: 0,0 - tiles: EgAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EgAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: YAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEgAAAAAAgQAAAAAAIAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEgAAAAAAgQAAAAAAIAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABEgAAAAAAgQAAAAAAIAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAIAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: YAAAAAABYAAAAAAAgQAAAAAAIwAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAOQAAAAAAOQAAAAAAYAAAAAACYAAAAAACgQAAAAAAIwAAAAAAIwAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACOQAAAAAAOQAAAAAAYAAAAAACYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABIAAAAAACYAAAAAADYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAACYAAAAAABYAAAAAADgQAAAAAAIwAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAADYAAAAAABYAAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADIAAAAAABUQAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUQAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADUQAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAC + tiles: YAAAAAABYAAAAAAAgQAAAAAAIwAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAYAAAAAADYAAAAAABgQAAAAAAIwAAAAAAIwAAAAAIJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAOQAAAAAAOQAAAAAAYAAAAAADYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACIAAAAAACYAAAAAABYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAABYAAAAAADYAAAAAABgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAADYAAAAAABYAAAAAABgQAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAIAAAAAADUQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACUQAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABUQAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: OQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAOQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: YAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAABwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABBwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABSgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACAAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAYAAAAAACYAAAAAAB + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACSgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACAAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAYAAAAAACYAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAABgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAACwAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAYAAAAAADYAAAAAAAUQAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD + tiles: gQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAcwAAAAABcwAAAAABcwAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAcwAAAAABcwAAAAACcwAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAACgQAAAAAACwAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAACYAAAAAACYAAAAAAAUQAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAC version: 6 -2,0: ind: -2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABOQAAAAAAIAAAAAADOQAAAAAAFgAAAAABFgAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABOQAAAAAAIAAAAAABOQAAAAAAFgAAAAADFgAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAB version: 6 -3,0: ind: -3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAADEAAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAYAAAAAACYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAAAgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAACgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAEAAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: cwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAABUQAAAAACcwAAAAAAUQAAAAACcwAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAAA + tiles: cwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAACUQAAAAACcwAAAAADUQAAAAACcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAABcwAAAAADcwAAAAADgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAACgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: YAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAACwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACcwAAAAABcwAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAADcwAAAAABcwAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAACfQAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAfQAAAAADfQAAAAABcwAAAAABcwAAAAAA + tiles: YAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACCwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAABgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAADfQAAAAABfQAAAAABcwAAAAABcwAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAADfQAAAAACcwAAAAACcwAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAADcwAAAAAAcwAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAADcwAAAAACcwAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAfQAAAAABfQAAAAADcwAAAAAAcwAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: gQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAABcwAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADcwAAAAABcwAAAAABcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADEAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAEgQAAAAAAgQAAAAAAEAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAADwAAAAAAHwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIQAAAAAADwAAAAAAgAAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABHwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAYAAAAAAAHwAAAAAAHwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIQAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAFHwAAAAAAgQAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAIQAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAgAAAAAAADwAAAAAAHwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAFDwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAADwAAAAAAHwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAIQAAAAAADwAAAAAAgAAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAHwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAYAAAAAABHwAAAAAAHwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAIQAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAKgQAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAIQAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAgAAAAAAADwAAAAAAHwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAIgAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAADIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAABcwAAAAADcwAAAAAAIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACCwAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAABcwAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAD + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIgAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAABIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAAAcwAAAAADcwAAAAACIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAABgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAACgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAADgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAADgQAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACCwAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAcwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADSgAAAAAASgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAABcwAAAAAAcwAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAACgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAADAAAAAADSgAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAABcwAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAADAAAAAABSgAAAAAADAAAAAAADAAAAAABgQAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAADcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAAAcwAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAASgAAAAAADAAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAADcwAAAAADUQAAAAABcwAAAAAAUQAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACUQAAAAAAcwAAAAACUQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADUQAAAAABcwAAAAADUQAAAAABcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAADcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACcwAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACSgAAAAAASgAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAADDAAAAAABcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAACgQAAAAAADAAAAAACDAAAAAADDAAAAAADDAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAADAAAAAADSgAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAAAcwAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAADAAAAAAASgAAAAAADAAAAAADDAAAAAADgQAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAADcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAAAcwAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAASgAAAAAADAAAAAABSgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAABcwAAAAABUQAAAAADcwAAAAABUQAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABUQAAAAACcwAAAAABUQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAcwAAAAADcwAAAAADUQAAAAADcwAAAAABUQAAAAADcwAAAAABcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAADCQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJgAAAAADCQAAAAADCQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJQAAAAADCQAAAAADCQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADDAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACDAAAAAAAYAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: cwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAACcwAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAACcwAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACcwAAAAABcwAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAASgAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADgQAAAAAASgAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADgQAAAAAASgAAAAAAcwAAAAABgQAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAASgAAAAAA + tiles: cwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAAAcwAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABcwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAADgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACcwAAAAACcwAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAASgAAAAAAcwAAAAACgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABgQAAAAAASgAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADgQAAAAAASgAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAASgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: SgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAD + tiles: SgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: YAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAB + tiles: YAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAC version: 6 1,0: ind: 1,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAABgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAABgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: YAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAABAgAAAAABBwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAKAAAAAAAKAAAAAAAgQAAAAAAIAAAAAABCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADBwAAAAAAYAAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAKAAAAAAAgQAAAAAAIAAAAAACCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACYAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADAgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAAgAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAAEAgAAAAAABwAAAAAAgQAAAAAAfQAAAAABfQAAAAACKAAAAAAAKAAAAAABgQAAAAAAIAAAAAACCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABBwAAAAAAYAAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAKAAAAAABgQAAAAAAIAAAAAADCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAYAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABYAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA version: 6 2,0: ind: 2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAwAAAAACBwAAAAAABwAAAAAAAwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAgAAAAABgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACCwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAACBwAAAAAAYAAAAAABgQAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAABAwAAAAABgQAAAAAAAgAAAAABBwAAAAAAAgAAAAAABwAAAAAABwAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAABwAAAAAAAwAAAAACgQAAAAAABwAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAACYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAABAwAAAAAEgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAwAAAAAEBwAAAAAABwAAAAAAAwAAAAAEBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAIAAAAAACCwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACCwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAADgQAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAABwAAAAAAAwAAAAAEgQAAAAAABwAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAEYAAAAAABBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAADAwAAAAACgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: gQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABDgAAAAACDgAAAAAADgAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABDgAAAAADUQAAAAABDgAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABDgAAAAACDgAAAAADDgAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAgAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAgAAAAABBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAwAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAABwAAAAAAgQAAAAAAAgAAAAABgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADgQAAAAAABwAAAAAAYAAAAAACYAAAAAACAwAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAwAAAAADBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAAgAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAACYAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAADEwAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAAAEwAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAADDgAAAAACDgAAAAADDgAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABDgAAAAADUQAAAAADDgAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACDgAAAAACDgAAAAADDgAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAgAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAgAAAAABBwAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAAwAAAAAEgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAABwAAAAAAYAAAAAABYAAAAAADAwAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAAwAAAAADBwAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAABwAAAAAAYAAAAAACAgAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAABYAAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAB version: 6 2,-3: ind: 2,-3 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAABCwAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAACCwAAAAAAYAAAAAABYAAAAAADgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAADEwAAAAACEwAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAwAAAAACgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-4: ind: 4,-4 @@ -225,27 +225,27 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADHgAAAAACHgAAAAABIAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAADHgAAAAAAHgAAAAAAIAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAIAAAAAABHgAAAAABHgAAAAACIAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: YAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAACYAAAAAAAfQAAAAABfQAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAACfQAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAYAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACUQAAAAAAIAAAAAABYAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACIAAAAAABUQAAAAADIAAAAAABIAAAAAADYAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAABYAAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAA + tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAABfQAAAAABfQAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAADfQAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAACYAAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADIAAAAAACIAAAAAABUQAAAAACIAAAAAADYAAAAAADIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAADIAAAAAACUQAAAAADIAAAAAADIAAAAAADYAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAABBwAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABYAAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAD version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: YAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 @@ -253,75 +253,75 @@ entities: version: 6 1,1: ind: 1,1 - tiles: gQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAGfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAABfQAAAAADYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAABfQAAAAABEAAAAAADYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAABgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA + tiles: gQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAGfQAAAAADYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAYAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAGfQAAAAADEAAAAAAGYAAAAAADgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA version: 6 0,1: ind: 0,1 - tiles: gQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAADDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAADDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAABDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAABCAAAAAAACAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACCAAAAAADCAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAACDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAADDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: gQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAACDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACDAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAADCAAAAAABCAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAACAAAAAADCAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACDAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAABDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: gAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACYAAAAAABYAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADUQAAAAACUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADUQAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABYAAAAAABYAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAUQAAAAACUQAAAAAAUQAAAAADUQAAAAABUQAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAUQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: YAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAAEgQAAAAAAYAAAAAABYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAABYAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAFgQAAAAAAYAAAAAADYAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADJwAAAAAEJwAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADUQAAAAADUQAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABUQAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAC + tiles: YAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAFJwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAFgQAAAAAAYAAAAAADYAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAFgQAAAAAAYAAAAAABYAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAADgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADJwAAAAABJwAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAFJwAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAUQAAAAABUQAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACUQAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAB version: 6 -1,1: ind: -1,1 - tiles: YAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAUgAAAAAAYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAACCAAAAAAACAAAAAAACAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADCAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAAACAAAAAABCAAAAAAACAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAADDAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAAD + tiles: YAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAUgAAAAAAYAAAAAACYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAAADAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAACCAAAAAACCAAAAAAACAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABCAAAAAABCAAAAAACCAAAAAABCAAAAAAACAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACCAAAAAABCAAAAAACCAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAADDAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAACYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAADYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAYAAAAAACYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAADYAAAAAADYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAABYAAAAAACYAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAABYAAAAAABYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAACYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAACgQAAAAAAYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABYAAAAAADYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAYAAAAAADYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAYAAAAAACYAAAAAAB version: 6 -3,2: ind: -3,2 - tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACQgAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADQgAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADQgAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACQgAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABEwAAAAACEwAAAAADEwAAAAAAEwAAAAABEwAAAAAAEwAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACEwAAAAADEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADEwAAAAABEwAAAAADEwAAAAACEwAAAAABEwAAAAABEwAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAABgQAAAAAAgQAAAAAAfQAAAAAC + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACEwAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABEwAAAAADEwAAAAADEwAAAAAAEwAAAAACEwAAAAACEwAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABEwAAAAABEwAAAAACEwAAAAAAEwAAAAACEwAAAAABEwAAAAACgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAAAEwAAAAACEwAAAAAAEwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAAAEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAfQAAAAAD version: 6 -1,2: ind: -1,2 - tiles: YAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,2: ind: 0,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAcwAAAAADcwAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABcwAAAAAAcwAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAcwAAAAABcwAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACcwAAAAAAcwAAAAADgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAADcwAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAADcwAAAAAAcwAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAACcwAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABFwAAAAAAFwAAAAAAFwAAAAACFwAAAAABFwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAfQAAAAACfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAACgQAAAAAAcwAAAAADcwAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAADcwAAAAAAcwAAAAACgQAAAAAAfQAAAAACfQAAAAAAfQAAAAABfQAAAAADgQAAAAAAcwAAAAABcwAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAADcwAAAAAAcwAAAAACgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAAAcwAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAACcwAAAAAAcwAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAABcwAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAACcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAACFwAAAAAB version: 6 2,1: ind: 2,1 - tiles: YAAAAAACBwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABCwAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAABwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAAwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABBwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAABwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAAwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAA + tiles: YAAAAAAABwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACCwAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACBwAAAAAAgQAAAAAACwAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACAwAAAAADYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAACwAAAAAAgQAAAAAADQAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAABwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAABwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACAwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAACgQAAAAAAIAAAAAABQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAABQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAA version: 6 3,0: ind: 3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAABYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAABgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACYAAAAAACgQAAAAAAEgAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACYAAAAAABgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAABYAAAAAABgQAAAAAAEgAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABYAAAAAADgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAADAgAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAAAAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAACYAAAAAACAgAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAA + tiles: gQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA version: 6 2,2: ind: 2,2 - tiles: QgAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAC + tiles: QgAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAYAAAAAABQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAB version: 6 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABYAAAAAABEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAACEwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAADEwAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAABEwAAAAADIAAAAAADIAAAAAADIAAAAAADgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAEwAAAAACEwAAAAACEwAAAAAAEwAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAA + tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAACgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAYAAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAAAEwAAAAABEwAAAAABEwAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADEwAAAAADEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAAAEwAAAAACEwAAAAAAEwAAAAACEwAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAABEwAAAAACEwAAAAADEwAAAAACEwAAAAABEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAEwAAAAADEwAAAAACEwAAAAABEwAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAEwAAAAABEwAAAAABEwAAAAABEwAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAGwAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAGwAAAAAAYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAABgQAAAAAASgAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAGwAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAGwAAAAAAYAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAADgQAAAAAASgAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAA version: 6 4,3: ind: 4,3 - tiles: YAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAYAAAAAACYAAAAAAAYAAAAAADCwAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAADgQAAAAAASgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAYAAAAAACYAAAAAABYAAAAAABCwAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAADgQAAAAAASgAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAAAYAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -333,35 +333,35 @@ entities: version: 6 3,3: ind: 3,3 - tiles: YAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAADAAAAAACDAAAAAABDAAAAAADfQAAAAACfQAAAAADCwAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADfQAAAAACfQAAAAABfQAAAAAADAAAAAABDAAAAAAADAAAAAADCAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADCAAAAAAACAAAAAABCAAAAAADfQAAAAADfQAAAAACfQAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABCAAAAAACCAAAAAAACAAAAAADfQAAAAADfQAAAAACfQAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAADAAAAAAADAAAAAACDAAAAAAAfQAAAAABfQAAAAADfQAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAABfQAAAAAAfQAAAAABfQAAAAADDAAAAAADDAAAAAACDAAAAAADDAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAADAAAAAAADAAAAAACDAAAAAABfQAAAAAAfQAAAAACfQAAAAABDAAAAAACDAAAAAABDAAAAAACDAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAADAAAAAADDAAAAAABDAAAAAACfQAAAAACfQAAAAACCwAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAAAfQAAAAABfQAAAAAAfQAAAAAADAAAAAADDAAAAAADDAAAAAACCAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADCAAAAAABCAAAAAAACAAAAAACfQAAAAAAfQAAAAABfQAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADCAAAAAAACAAAAAABCAAAAAABfQAAAAADfQAAAAAAfQAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAADAAAAAAADAAAAAAADAAAAAADfQAAAAADfQAAAAACfQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAADAAAAAABDAAAAAABDAAAAAACfQAAAAABfQAAAAACfQAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAACfQAAAAABfQAAAAACfQAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAQgAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADQgAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACFQAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAFQAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADFQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACFQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAADcAAAAAAAgQAAAAAAFQAAAAACgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABDQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAA + tiles: gQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACQgAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAQgAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADFQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADFQAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABFQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACFQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAYAAAAAACFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAADDQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAYAAAAAADcAAAAAAAgQAAAAAADQAAAAADgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAADQAAAAACgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAEwAAAAADEwAAAAADEwAAAAADEwAAAAAAIAAAAAACIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAABIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAfQAAAAADfQAAAAACQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAACEwAAAAAAEwAAAAACEwAAAAABEwAAAAAAEwAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAAAEwAAAAADEwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAADEwAAAAACEwAAAAAAEwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAACFQAAAAAAFQAAAAACFQAAAAACFQAAAAADgQAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAABEwAAAAACEwAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABFQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAACwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAFQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAAAFQAAAAABFQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAACFQAAAAADFQAAAAABFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAFQAAAAABFQAAAAAAFQAAAAAAFQAAAAABFQAAAAAAFQAAAAACFQAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABFQAAAAADFQAAAAADFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA + tiles: gQAAAAAAEwAAAAABEwAAAAACEwAAAAACEwAAAAABIAAAAAADIAAAAAACEwAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAADEwAAAAACEwAAAAABEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAACIAAAAAADIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAABQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAAAEwAAAAADEwAAAAADEwAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAACEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAACIAAAAAADIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAADEwAAAAABEwAAAAABEwAAAAABEwAAAAAAEwAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACFQAAAAACFQAAAAABFQAAAAADFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAACEwAAAAADEwAAAAABEwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAFQAAAAADFQAAAAACFQAAAAADFQAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAADFQAAAAADFQAAAAABFQAAAAACFQAAAAADFQAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAACwAAAAAAFQAAAAABFQAAAAADFQAAAAADFQAAAAADFQAAAAACFQAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADFQAAAAAAFQAAAAADFQAAAAAAFQAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAFQAAAAACFQAAAAACFQAAAAACFQAAAAACFQAAAAADFQAAAAACFQAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAAAFQAAAAADFQAAAAADFQAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAADFQAAAAADFQAAAAAAFQAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA version: 6 0,3: ind: 0,3 - tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAACFwAAAAAAFwAAAAACFwAAAAAAFwAAAAABFwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAAAFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAADFwAAAAABFwAAAAADFwAAAAAAFwAAAAACFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABFwAAAAADFwAAAAADFwAAAAACFwAAAAADFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGgAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfQAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAGgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAACwAAAAAAgQAAAAAAcAAAAAAADQAAAAADcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAADFwAAAAAAFwAAAAADFwAAAAADFwAAAAABFwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAADFwAAAAACFwAAAAAAFwAAAAABFwAAAAACFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAAAFwAAAAAAFwAAAAADFwAAAAADFwAAAAAAFwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAADFwAAAAAAFwAAAAAAFwAAAAACFwAAAAADFwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGgAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfQAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAADCwAAAAAAgQAAAAAAcAAAAAAADQAAAAADcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: fQAAAAACfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAADQAAAAADgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAAAFQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAFQAAAAABFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAFQAAAAABFQAAAAACFQAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAA + tiles: fQAAAAAAfQAAAAADfQAAAAADfQAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAADQAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACgQAAAAAADQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAAAFQAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAADFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAA version: 6 3,4: ind: 3,4 - tiles: gQAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,4: ind: 1,4 - tiles: YAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABBwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 4,4: ind: 4,4 @@ -369,23 +369,23 @@ entities: version: 6 0,4: ind: 0,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABBwAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAABwAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: YAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAADDQAAAAABDQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAADgQAAAAAAcAAAAAAAcAAAAAAADQAAAAACcAAAAAAADQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABHgAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACHgAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAACHgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAABfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAABHgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAABDQAAAAACDQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAADQAAAAAAcAAAAAAADQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAACYAAAAAABfQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADYAAAAAADfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAAAfQAAAAABfQAAAAABfQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAABfQAAAAABfQAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAACfQAAAAAAfQAAAAACfQAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAABfQAAAAACfQAAAAADfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,5: ind: 0,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEgAAAAAAIAAAAAADIAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAABYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEgAAAAAAIAAAAAADIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEgAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,0: ind: -4,0 @@ -397,11 +397,11 @@ entities: version: 6 -4,3: ind: -4,3 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAEAAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAEAAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB version: 6 -3,3: ind: -3,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABCwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAFAAAAAADcwAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACYAAAAAABUQAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAACwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAFAAAAAABcwAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAADYAAAAAAAUQAAAAAAYAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAA version: 6 -5,3: ind: -5,3 @@ -409,19 +409,19 @@ entities: version: 6 -2,3: ind: -2,3 - tiles: CwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEwAAAAACEwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAACwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAAD + tiles: CwAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAABcAAAAAAAgQAAAAAAfQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABBAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAACwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAAD version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHQAAAAADHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAACHQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAADHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABYAAAAAACHQAAAAABHQAAAAADHQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADYAAAAAABHQAAAAADHQAAAAADHQAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAYAAAAAABHQAAAAACHQAAAAAAHQAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAADHQAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAADHQAAAAABHQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAACYAAAAAAAHQAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAHAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAA version: 6 -2,4: ind: -2,4 - tiles: gQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 @@ -429,7 +429,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAEfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAIAAAAAACUQAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABEAAAAAACgQAAAAAAgQAAAAAAEAAAAAAGgQAAAAAAIAAAAAADIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABEAAAAAAAgQAAAAAAgQAAAAAAEAAAAAADfQAAAAABgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAFgQAAAAAAgQAAAAAAfQAAAAABEAAAAAAFfQAAAAABfQAAAAAAfQAAAAAAEAAAAAAEgQAAAAAAIAAAAAACUQAAAAABIAAAAAABAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAfQAAAAAAEAAAAAAGEAAAAAADgQAAAAAAEAAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,5: ind: 3,5 @@ -441,24 +441,36 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-4: ind: -5,-4 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + version: 6 + -3,5: + ind: -3,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,5: + ind: -2,5 + tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -526,11 +538,13 @@ entities: decals: 8199: 30,-15 8200: 30,-9 - 8721: 57,11 - 8722: 58,11 8961: 9,17 8962: 10,17 8963: 16,17 + 8985: 57,11 + 8986: 58,11 + 8987: 61,11 + 8988: 62,11 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -568,6 +582,7 @@ entities: 2149: -4.9654737,27.154173 7349: -20.712843,20.881693 7381: -20.692894,-14.720455 + 9630: 4.6297913,-60.77529 - node: angle: 0.017453292519943295 rad color: '#FFFFFFFF' @@ -609,6 +624,11 @@ entities: 2152: -1.1244693,28.919865 7350: -20.36495,22.00225 7384: -12.161644,-13.896967 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 9631: 5.9526916,-63.01578 - node: color: '#FFFFFFFF' id: Basalt9 @@ -666,8 +686,6 @@ entities: 1298: 37,-19 1299: 37,-18 1300: 52,-38 - 1301: 52,-39 - 1302: 59,-40 1303: 58,-33 1304: 59,-33 1305: 60,-33 @@ -792,7 +810,6 @@ entities: 5553: -26,58 5554: -27,58 5555: -28,58 - 5779: 31,-8 5786: 31,-2 6198: 3,-46 6200: 3,-40 @@ -823,17 +840,12 @@ entities: 6793: 61,-19 6794: 62,-19 6795: 63,-19 - 7202: 3,-61 7203: 3,-60 7204: -8,-69 7205: -17,-59 7598: -26,47 7599: -31,46 7600: -9,-36 - 7700: 3,-21 - 7701: 4,-21 - 7704: 3,-19 - 7705: 4,-19 7726: 24,7 7764: 50,-2 7765: 50,-1 @@ -843,18 +855,23 @@ entities: 8196: 31,-3 8197: 42,-2 8198: 42,-1 - 8209: 39,4 - 8210: 40,4 8253: 31,6 8912: 51,-11 - 8970: 8,-14 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bot - decals: - 8678: 52,64 - 8679: 54,63 + 8981: 61,12 + 8982: 62,12 + 8983: 58,12 + 8984: 57,12 + 8997: 12,-13 + 8998: 13,-13 + 8999: 14,-13 + 9005: 27,-15 + 9107: 32,-29 + 9207: 55,-33 + 9290: 56,-40 + 9291: 55,-40 + 9537: 39,-1 + 9613: 52,63 + 9874: -32,77 - node: zIndex: 1 color: '#FFFFFFFF' @@ -887,7 +904,6 @@ entities: id: Bot decals: 2956: 51,59 - 2957: 50,59 2958: 48,65 2959: 50,65 7999: 8,-9 @@ -896,8 +912,6 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 8726: 57,12 - 8727: 58,12 8730: 62,-4 8731: 60,-4 - node: @@ -941,14 +955,6 @@ entities: 7716: 27,6 7717: 27,7 8680: 27,8 - - node: - angle: 1.5707963267948966 rad - color: '#FFFF00FF' - id: BotGreyscale - decals: - 7996: 10,-12 - 7997: 11,-12 - 7998: 12,-12 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -960,9 +966,6 @@ entities: color: '#FFFFFFFF' id: Box decals: - 713: 29,-22 - 714: 29,-23 - 715: 29,-24 716: 31,-19 1265: 53,-25 1306: 61,-31 @@ -975,11 +978,6 @@ entities: id: Box decals: 6702: 3,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 7145: -36,-18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -1078,12 +1076,6 @@ entities: decals: 4244: 24,49 4245: 24,50 - 5561: -46,68 - 5562: -46,69 - 5563: -46,70 - 5564: -46,71 - 5582: -46,72 - 5583: -46,67 6692: 0,-15 7848: 53,4 7849: 53,5 @@ -1139,7 +1131,6 @@ entities: 4061: 76,54 4062: 74,55 4063: 77,52 - 6813: -4,76 7301: 18,-31 7302: 30,-31 7333: -10,21 @@ -1151,6 +1142,9 @@ entities: 7940: 57,-1 7974: 61,5 8598: 30,25 + 9590: -5,75 + 9591: -5,72 + 9900: -48,74 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1159,7 +1153,6 @@ entities: 4039: 72,45 4044: 68,55 4045: 66,54 - 6812: -13,76 7292: 25,-31 7319: 11,-31 7332: -13,21 @@ -1168,6 +1161,9 @@ entities: 7939: 54,-1 7973: 58,5 8597: 28,25 + 9587: -12,72 + 9588: -12,75 + 9898: -53,74 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -1186,6 +1182,8 @@ entities: 7366: -19,-16 7935: 57,-4 7971: 61,3 + 9589: -5,74 + 9897: -48,69 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw @@ -1208,6 +1206,8 @@ entities: 7936: 54,-4 7972: 58,3 8596: 28,21 + 9592: -12,74 + 9899: -53,69 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -1222,15 +1222,12 @@ entities: id: BrickTileSteelEndS decals: 4072: 66,52 - 6827: -4,71 - 6866: -13,71 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: 2527: 1,35 6325: -37,27 - 6857: -13,73 7372: -13,-13 7373: -12,-15 7380: -21,-11 @@ -1244,15 +1241,12 @@ entities: 4040: 73,45 4077: 74,46 6326: -31,27 - 6856: -4,73 7502: 68,54 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: 2526: 1,40 - 6852: -13,73 - 6853: -13,76 7310: 28,-34 7323: 17,-33 7506: 74,43 @@ -1264,8 +1258,6 @@ entities: 2525: 8,40 4075: 73,52 4076: 74,51 - 6854: -4,76 - 6855: -4,73 7311: 26,-33 7312: 15,-32 7379: -20,-15 @@ -1281,13 +1273,6 @@ entities: 4041: 77,46 4042: 77,51 4043: 76,53 - 6815: -13,72 - 6816: -13,74 - 6817: -13,75 - 6823: -4,72 - 6824: -4,73 - 6825: -4,74 - 6826: -4,75 7307: 30,-33 7308: 30,-32 7309: 28,-35 @@ -1315,6 +1300,9 @@ entities: 8592: 30,22 8593: 30,23 8594: 30,24 + 9612: -5,71 + 9911: -48,70 + 9912: -48,73 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1337,22 +1325,6 @@ entities: 6322: -34,27 6323: -35,27 6324: -36,27 - 6828: -12,76 - 6829: -11,76 - 6830: -10,76 - 6831: -9,76 - 6832: -8,76 - 6833: -7,76 - 6834: -6,76 - 6835: -5,76 - 6836: -5,73 - 6837: -6,73 - 6838: -7,73 - 6839: -8,73 - 6840: -9,73 - 6841: -10,73 - 6842: -11,73 - 6843: -12,73 7303: 26,-31 7304: 27,-31 7305: 28,-31 @@ -1371,6 +1343,24 @@ entities: 7944: 56,-1 7977: 59,5 7978: 60,5 + 9122: 37,-30 + 9123: 36,-30 + 9593: -11,75 + 9594: -10,75 + 9595: -9,75 + 9596: -8,75 + 9597: -7,75 + 9598: -6,75 + 9603: -11,72 + 9605: -10,72 + 9607: -9,72 + 9608: -8,72 + 9609: -7,72 + 9610: -6,72 + 9901: -52,74 + 9902: -51,74 + 9903: -50,74 + 9904: -49,74 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1395,22 +1385,6 @@ entities: 6317: -34,27 6318: -33,27 6319: -32,27 - 6844: -12,73 - 6845: -11,73 - 6846: -10,73 - 6847: -9,73 - 6848: -8,73 - 6849: -7,73 - 6850: -6,73 - 6851: -5,73 - 6858: -12,76 - 6859: -11,76 - 6860: -10,76 - 6861: -9,76 - 6862: -8,76 - 6863: -7,76 - 6864: -5,76 - 6865: -6,76 7280: 12,-32 7281: 13,-32 7285: 14,-32 @@ -1426,6 +1400,28 @@ entities: 7975: 59,3 7976: 60,3 8595: 29,21 + 9114: 35,-33 + 9115: 36,-33 + 9125: 37,-33 + 9578: -12,77 + 9579: -11,77 + 9580: -10,77 + 9581: -10,77 + 9582: -9,77 + 9583: -8,77 + 9584: -7,77 + 9585: -6,77 + 9586: -5,77 + 9599: -6,74 + 9600: -7,74 + 9601: -8,74 + 9602: -9,74 + 9604: -10,74 + 9606: -11,74 + 9905: -52,69 + 9906: -51,69 + 9907: -50,69 + 9908: -49,69 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1436,13 +1432,6 @@ entities: 2506: 8,39 4060: 66,44 4071: 66,53 - 6808: -13,72 - 6809: -13,73 - 6810: -13,74 - 6811: -13,75 - 6818: -4,74 - 6819: -4,75 - 6821: -4,72 7282: 15,-35 7283: 15,-34 7284: 15,-33 @@ -1469,6 +1458,9 @@ entities: 7942: 54,-2 7979: 58,4 8591: 28,24 + 9611: -12,71 + 9909: -53,70 + 9910: -53,73 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN @@ -1764,7 +1756,6 @@ entities: 6666: -22,-3 8358: 24,-15 8359: 25,-15 - 8360: 26,-15 8708: -38,66 8709: -38,67 8711: -38,68 @@ -1886,15 +1877,12 @@ entities: 7146: -35,-16 7147: -26,-16 7171: -45,-17 - 7172: -55,-18 7173: -54,-13 7188: -54,-49 7189: -48,-51 7190: -40,-51 - 7197: 3,-61 7199: 3,-63 7200: 0,-65 - 7201: 4,-60 7206: 4,-52 7207: 6,-48 7208: 10,-50 @@ -1903,32 +1891,17 @@ entities: 7211: 5,-37 7212: 4,-30 7213: -10,-32 - 7445: -61,-29 - 7446: -63,-26 - 7447: -61,-23 - 7448: -63,-22 7449: -65,-22 - 7450: -61,-27 - 7497: -61,-19 7498: -66,-20 7499: -65,-20 - 7500: -61,-31 - 8175: 3,-21 - 8176: 4,-19 - 8320: 36,1 8321: 37,-3 8322: 31,0 8646: -57,-34 - 8647: -58,-31 8648: -57,-30 8649: -59,-34 8650: -57,-35 - 8651: -61,-30 8652: -59,-35 - 8653: -59,-29 - 8654: -59,-23 8655: -59,-19 - 8656: -57,-18 8674: -48,-46 8675: -48,-44 8676: -51,-51 @@ -1945,6 +1918,47 @@ entities: 8918: 46,-4 8958: -5,-62 8959: -9,-63 + 9203: -25,54 + 9204: -23,52 + 9205: -24,55 + 9206: -26,56 + 9369: -59,-30 + 9370: -61,-27 + 9371: -59,-27 + 9372: -63,-24 + 9373: -61,-31 + 9374: -62,-22 + 9375: -61,-20 + 9376: -60,-23 + 9377: -59,-21 + 9439: 36,-49 + 9440: 35,-47 + 9441: 33,-47 + 9442: 36,-45 + 9443: 35,-44 + 9444: 39,-43 + 9446: 44,-43 + 9447: 44,-43 + 9499: 9,-55 + 9500: 5,-55 + 9501: 10,-52 + 9502: -19,-70 + 9647: 3,-61 + 9648: 3,-61 + 9787: -36,76 + 9788: -36,78 + 9789: -39,79 + 9790: -40,78 + 9791: -32,77 + 9792: -29,78 + 9793: -28,75 + 9794: -30,73 + 9795: -32,72 + 9796: -43,73 + 9797: -44,69 + 9920: -32,75 + 9921: -28,74 + 9922: -29,77 - node: cleanable: True zIndex: 1 @@ -1976,15 +1990,12 @@ entities: 6960: 40,-9 6961: 44,-15 7030: 44,-22 - 7031: 39,3 - 7032: 38,4 7033: 48,27 7034: 40,31 7035: 30,10 7036: 28,14 8099: 29,6 8129: 44,-1 - 8130: 47,-4 8168: 42,4 8169: 45,0 8401: 5,68 @@ -2065,7 +2076,6 @@ entities: 1481: 19,5 1482: 22,5 1484: 19,6 - 1489: 31,-12 1490: 30,-14 1491: 32,-16 1492: 27,-18 @@ -2079,10 +2089,7 @@ entities: 1502: 10,-24 1503: 12,-23 1504: 9,-20 - 1505: 13,-16 - 1506: 9,-16 1507: 9,-14 - 1508: 13,-17 1552: 49,19 1553: 48,20 1554: 48,19 @@ -2188,7 +2195,6 @@ entities: 4154: 10,-27 4155: 15,-23 4156: 11,-21 - 4157: 13,-16 4158: 18,-18 4159: 25,-18 4160: 26,-17 @@ -2209,7 +2215,6 @@ entities: 4175: 40,-36 4176: 42,-35 4177: 44,-35 - 4178: 47,-36 4179: 48,-34 4180: 48,-35 4181: 49,-37 @@ -2219,9 +2224,6 @@ entities: 4186: 45,-40 4187: 53,-45 4188: 53,-44 - 4189: 56,-45 - 4190: 55,-42 - 4191: 57,-40 4192: 57,-38 4193: 55,-36 4194: 57,-32 @@ -2229,7 +2231,6 @@ entities: 4196: 58,-29 4199: 52,-29 4200: 51,-26 - 4201: 52,-39 4202: 51,-37 4203: 52,-34 4204: 51,-32 @@ -2356,8 +2357,6 @@ entities: 4589: -16,68 4612: 59,-50 4613: 59,-50 - 4614: 56,-49 - 4615: 55,-48 4895: -1,-50 4896: 0,-51 4898: -10,-52 @@ -2409,7 +2408,6 @@ entities: 5245: -57,-20 5246: -56,-20 5247: -56,-20 - 5248: -55,-18 5249: -51,-20 5250: -52,-19 5251: -53,-20 @@ -2521,7 +2519,6 @@ entities: 5663: -35,72 5664: -37,72 5665: -40,72 - 5666: -45,67 5667: -44,70 5668: -45,72 5669: -42,69 @@ -2539,8 +2536,6 @@ entities: 5681: -51,62 5683: -53,61 5684: -54,61 - 5685: -54,62 - 5686: -53,62 5687: -51,61 5688: -51,59 5689: -51,56 @@ -2682,9 +2677,7 @@ entities: 6536: 44,-6 6542: 29,-4 6543: 29,-1 - 6544: 31,-9 6545: 30,-11 - 6546: 29,-9 6547: 36,-7 6548: 34,-6 6549: 34,-8 @@ -2756,7 +2749,6 @@ entities: 7149: -36,-16 7150: -36,-15 7151: -35,-15 - 7152: -36,-18 7153: -28,-17 7154: -29,-17 7155: -26,-15 @@ -2777,10 +2769,6 @@ entities: 7170: -45,-13 7174: -59,-34 7175: -59,-32 - 7176: -59,-29 - 7177: -59,-27 - 7178: -59,-25 - 7179: -59,-23 7180: -59,-20 7181: -50,-41 7182: -51,-39 @@ -2822,60 +2810,30 @@ entities: 7243: -17,-68 7244: -18,-66 7245: -16,-64 - 7430: -62,-29 - 7431: -63,-28 - 7432: -61,-27 - 7433: -62,-26 - 7434: -63,-27 - 7435: -62,-25 - 7436: -61,-25 - 7437: -62,-24 - 7438: -63,-23 - 7439: -63,-23 - 7440: -62,-22 - 7441: -62,-21 - 7442: -61,-21 7443: -65,-22 7444: -65,-28 - 7484: -61,-31 - 7485: -63,-30 7486: -65,-30 7487: -64,-30 7488: -66,-20 7489: -64,-20 - 7490: -62,-19 - 7491: -61,-19 7492: -66,-22 7493: -66,-28 7494: -66,-30 7495: -65,-29 - 7496: -63,-29 - 8170: 4,-21 8171: 2,-20 - 8172: 3,-19 - 8173: 1,-21 - 8174: 1,-19 8317: 34,-2 8318: 40,-3 8319: 38,-2 8633: 54,60 8634: 54,62 8635: 52,61 - 8636: 49,61 8637: -57,-31 - 8638: -58,-30 8639: -57,-30 8641: -57,-33 8642: -57,-33 8643: -58,-34 8644: -58,-33 8657: -59,-20 - 8658: -59,-21 - 8659: -59,-23 - 8660: -59,-25 - 8661: -59,-27 - 8662: -59,-29 - 8663: -59,-31 8664: -54,-36 8665: -54,-37 8666: -54,-39 @@ -2894,23 +2852,9 @@ entities: 8688: -62,-54 8689: -63,-53 8690: -62,-53 - 8805: 35,-33 - 8806: 35,-32 - 8807: 36,-32 - 8808: 36,-31 - 8809: 37,-32 - 8810: 37,-33 - 8811: 38,-32 - 8812: 38,-33 - 8813: 36,-32 - 8814: 36,-32 - 8815: 35,-32 - 8816: 35,-32 - 8817: 34,-31 8818: 39,-36 8819: 41,-36 8820: 43,-36 - 8821: 36,-29 8822: 32,-26 8823: 39,-19 8824: 61,-3 @@ -2929,20 +2873,14 @@ entities: 8837: 58,7 8838: 61,9 8839: 59,10 - 8840: 58,11 - 8841: 60,12 8842: 60,11 - 8843: 61,10 8844: 59,10 - 8845: 58,11 8846: 57,10 - 8847: 58,10 8848: 62,7 8849: 62,-3 8892: 47,0 8893: 48,1 8894: 50,1 - 8895: 49,0 8899: -22,-32 8900: -21,-31 8901: -26,-30 @@ -2976,6 +2914,188 @@ entities: 8955: -3,-63 8956: -3,-63 8957: -5,-62 + 9234: 56,-50 + 9237: 55,-42 + 9241: 56,-40 + 9323: -60,-31 + 9324: -62,-30 + 9325: -62,-29 + 9326: -60,-27 + 9327: -62,-27 + 9328: -63,-27 + 9329: -59,-29 + 9330: -59,-26 + 9331: -60,-24 + 9332: -62,-25 + 9333: -63,-23 + 9334: -61,-22 + 9335: -59,-23 + 9336: -62,-20 + 9337: -63,-21 + 9338: -61,-20 + 9339: -61,-19 + 9340: -59,-21 + 9341: -62,-24 + 9342: -60,-27 + 9343: -60,-27 + 9344: -62,-28 + 9345: -63,-29 + 9346: -62,-30 + 9347: -61,-30 + 9348: -61,-31 + 9349: -59,-31 + 9413: -23,-16 + 9414: -24,-16 + 9415: -25,-15 + 9416: -25,-16 + 9417: -25,-17 + 9418: -23,-15 + 9419: -23,-15 + 9420: -23,-15 + 9421: -31,-15 + 9422: -33,-14 + 9423: -32,-14 + 9424: 35,-51 + 9425: 36,-51 + 9426: 36,-53 + 9427: 34,-53 + 9428: 33,-55 + 9429: 33,-56 + 9430: 34,-54 + 9431: 33,-53 + 9432: 33,-52 + 9433: 33,-51 + 9434: 33,-50 + 9435: 36,-49 + 9436: 35,-48 + 9437: 36,-47 + 9438: 35,-49 + 9448: 43,-43 + 9449: 42,-42 + 9450: 40,-42 + 9451: 38,-43 + 9452: 36,-43 + 9453: 35,-42 + 9454: 37,-42 + 9455: 37,-43 + 9456: 36,-43 + 9457: 33,-43 + 9485: 8,-57 + 9487: 6,-55 + 9488: 10,-52 + 9489: 10,-54 + 9490: 10,-55 + 9491: 13,-57 + 9492: 12,-57 + 9493: 13,-56 + 9494: 13,-57 + 9495: 13,-57 + 9496: 8,-57 + 9497: 6,-58 + 9498: 5,-57 + 9503: -20,-70 + 9504: -19,-69 + 9505: -20,-68 + 9506: -19,-68 + 9507: -19,-67 + 9508: -22,-68 + 9509: -20,-67 + 9510: -19,-67 + 9511: -21,-68 + 9520: -18,-65 + 9521: -17,-70 + 9522: -17,-71 + 9552: 37,0 + 9553: 35,0 + 9554: 34,1 + 9555: 34,3 + 9556: 36,4 + 9557: 37,3 + 9558: 37,2 + 9559: 39,4 + 9560: 40,2 + 9733: -32,77 + 9734: -32,77 + 9735: -32,78 + 9736: -31,78 + 9737: -29,79 + 9738: -28,79 + 9739: -28,78 + 9740: -27,77 + 9741: -29,77 + 9742: -28,75 + 9743: -29,75 + 9744: -30,75 + 9745: -28,77 + 9746: -28,76 + 9747: -27,78 + 9748: -28,78 + 9749: -29,79 + 9750: -30,78 + 9751: -28,79 + 9752: -27,79 + 9753: -30,73 + 9754: -32,74 + 9755: -33,73 + 9756: -34,73 + 9757: -35,73 + 9758: -38,74 + 9760: -36,76 + 9761: -38,76 + 9762: -39,77 + 9763: -38,77 + 9764: -37,77 + 9875: -40,76 + 9876: -37,76 + 9877: -37,77 + 9878: -37,77 + 9879: -38,77 + 9880: -39,77 + 9881: -39,78 + 9882: -39,79 + 9883: -38,79 + 9884: -38,78 + 9885: -37,78 + 9886: -37,79 + 9887: -36,78 + 9888: -39,74 + 9889: -40,74 + 9890: -36,73 + 9891: -35,74 + 9892: -37,74 + 9893: -38,74 + 9894: -38,74 + 9895: -38,74 + 9896: -38,74 + 9913: -28,73 + 9914: -28,74 + 9915: -29,73 + 9916: -29,74 + 9917: -30,74 + 9918: -28,75 + 9919: -30,75 + 9923: -30,77 + 9924: -28,77 + 9925: -28,76 + 9926: -28,75 + 9927: -29,75 + 9928: -30,74 + 9929: -30,74 + 9930: -30,73 + 9931: -31,72 + 9932: -32,72 + 9933: -34,72 + 9934: -39,73 + 9935: -43,72 + 9936: -44,72 + 9937: -43,69 + 9938: -43,68 + 9939: -44,69 + 9940: -44,68 + 9941: -43,67 + 9942: -43,67 + 9943: -43,68 + 9944: -46,68 - node: cleanable: True zIndex: 1 @@ -3033,19 +3153,10 @@ entities: 8107: 31,5 8111: 29,2 8112: 29,6 - 8113: 34,4 - 8114: 35,4 - 8115: 37,4 - 8116: 40,4 - 8117: 40,2 - 8118: 40,1 - 8119: 39,0 - 8120: 39,0 8121: 45,-2 8122: 45,-1 8123: 43,-2 8124: 47,-2 - 8125: 48,-1 8126: 44,-1 8127: 43,1 8128: 42,2 @@ -3217,7 +3328,6 @@ entities: 3047: -45,52 3049: -47,55 3050: -43,58 - 3051: -46,59 3052: -45,61 3053: -49,62 3054: -42,62 @@ -3405,11 +3515,9 @@ entities: 3261: 43,62 3262: 44,59 3263: 45,58 - 3264: 46,59 3265: 45,60 3266: 45,59 3267: 43,55 - 3268: 46,56 3269: 38,56 3270: 35,53 3271: 36,51 @@ -3427,7 +3535,6 @@ entities: 3283: 40,49 3284: 40,47 3286: 32,46 - 3287: 31,45 3288: 29,46 3289: 35,50 3290: 31,49 @@ -3451,7 +3558,6 @@ entities: 3310: 28,55 3311: 30,57 3312: 27,59 - 3313: 47,56 3314: 51,55 3315: 50,54 3316: 51,50 @@ -3548,8 +3654,6 @@ entities: 3411: 47,10 3412: 43,7 3426: 10,0 - 3430: 13,-16 - 3432: 11,-16 3433: 9,-21 3434: 10,-22 3435: 11,-23 @@ -3560,7 +3664,6 @@ entities: 3443: 26,-17 3444: 26,-22 3445: 27,-23 - 3446: 29,-23 3447: 32,-22 3448: 32,-23 3449: 34,-19 @@ -3607,11 +3710,6 @@ entities: 3503: 60,-30 3504: 56,-36 3505: 57,-36 - 3506: 57,-41 - 3507: 55,-42 - 3508: 56,-43 - 3509: 56,-47 - 3510: 55,-45 3511: 50,-44 3512: 50,-43 3513: 50,-44 @@ -3629,13 +3727,9 @@ entities: 3527: 50,-41 3528: 49,-36 3529: 46,-37 - 3530: 45,-36 3531: 47,-35 - 3532: 47,-36 3533: 48,-36 3534: 48,-36 - 3535: 47,-36 - 3536: 47,-37 3537: 49,-34 3538: 49,-33 3539: 48,-33 @@ -3995,8 +4089,6 @@ entities: 4592: -19,71 4593: -19,72 4594: -19,72 - 4607: 56,-50 - 4608: 55,-49 4609: 58,-49 4610: 58,-50 5149: -56,-40 @@ -4008,13 +4100,6 @@ entities: 5155: -58,-36 5156: -59,-34 5157: -59,-32 - 5158: -59,-29 - 5159: -59,-27 - 5160: -59,-25 - 5161: -59,-23 - 5162: -59,-21 - 5163: -59,-18 - 5164: -58,-17 5165: -55,-17 5166: -54,-17 5167: -53,-17 @@ -4058,24 +4143,6 @@ entities: 7078: -29,-59 7079: -28,-60 7080: -29,-57 - 7191: 3,-61 - 7192: 3,-61 - 7193: 4,-60 - 7194: 4,-60 - 7451: -62,-28 - 7452: -62,-29 - 7453: -61,-29 - 7454: -62,-27 - 7455: -63,-27 - 7456: -63,-27 - 7457: -63,-26 - 7458: -62,-25 - 7459: -62,-24 - 7460: -61,-23 - 7461: -62,-23 - 7462: -63,-22 - 7463: -61,-21 - 7464: -62,-21 7695: 1,-38 7696: -2,-36 7697: 2,-33 @@ -4183,25 +4250,10 @@ entities: 7130: 1,-66 7131: -3,-69 7132: -5,-69 - 7465: -62,-28 - 7466: -62,-26 7467: -65,-28 - 7468: -61,-24 - 7469: -62,-26 - 7470: -61,-26 - 7471: -61,-23 - 7472: -61,-23 - 7473: -62,-25 - 7474: -62,-31 - 7475: -61,-31 7476: -65,-30 7477: -65,-28 7478: -65,-20 - 7479: -63,-20 - 7480: -62,-19 - 7481: -61,-20 - 7482: -61,-19 - 7483: -62,-20 7681: 0,-39 7682: 1,-40 7683: -1,-37 @@ -4218,18 +4270,13 @@ entities: 7694: -6,-38 8614: 58,61 8615: 58,60 - 8616: 54,63 8617: 52,62 8618: 49,62 - 8619: 48,61 8620: 50,63 - 8621: 52,64 8622: 48,63 8623: 49,62 8624: 58,64 8625: 49,59 - 8626: 50,57 - 8627: 48,55 8628: 56,62 8629: 56,62 8630: 56,62 @@ -4256,6 +4303,158 @@ entities: 8949: 49,1 8950: 49,1 8951: 49,1 + 9155: -14,-42 + 9156: -18,-39 + 9157: -14,-29 + 9158: -16,-25 + 9159: -17,-21 + 9160: -17,-26 + 9161: -6,-27 + 9162: 3,-28 + 9163: 6,-27 + 9164: 10,-27 + 9165: 17,-28 + 9166: 21,-27 + 9167: 31,-28 + 9168: 31,-23 + 9169: 26,-16 + 9170: 25,-18 + 9171: 11,-17 + 9172: 9,-16 + 9173: 10,-15 + 9174: 8,-15 + 9175: 32,-16 + 9176: 31,-15 + 9177: 30,-15 + 9178: 31,-12 + 9179: 29,-9 + 9180: 30,-8 + 9181: 29,-4 + 9182: 30,-2 + 9183: 13,-13 + 9184: 15,-13 + 9185: 17,-13 + 9186: 19,-13 + 9187: 18,-10 + 9188: 15,-9 + 9189: 49,0 + 9190: 48,1 + 9191: 47,1 + 9192: 46,0 + 9193: 46,0 + 9194: 46,0 + 9195: 46,0 + 9196: 53,1 + 9197: 61,11 + 9198: 62,11 + 9199: 57,12 + 9200: 62,5 + 9201: 57,6 + 9202: 48,3 + 9243: 54,-43 + 9246: 57,-49 + 9247: 57,-49 + 9350: -60,-31 + 9351: -63,-30 + 9352: -62,-31 + 9353: -61,-27 + 9354: -60,-26 + 9355: -59,-27 + 9356: -59,-25 + 9357: -59,-23 + 9358: -61,-23 + 9359: -63,-23 + 9360: -61,-23 + 9361: -63,-20 + 9362: -59,-21 + 9363: -62,-26 + 9364: -63,-27 + 9365: -61,-27 + 9366: -60,-25 + 9367: -60,-25 + 9368: -60,-27 + 9458: 33,-54 + 9459: 33,-53 + 9460: 33,-52 + 9461: 34,-51 + 9462: 34,-51 + 9463: 33,-56 + 9464: 31,-57 + 9465: 30,-57 + 9466: 31,-53 + 9467: 33,-48 + 9468: 33,-47 + 9469: 33,-46 + 9470: 36,-44 + 9471: 35,-43 + 9472: 33,-43 + 9473: 33,-44 + 9474: 34,-43 + 9475: 35,-42 + 9476: 37,-42 + 9477: 38,-42 + 9478: 40,-42 + 9479: 41,-42 + 9480: 42,-42 + 9481: 43,-43 + 9482: 42,-43 + 9483: 41,-43 + 9484: 44,-42 + 9512: -23,-68 + 9513: -20,-70 + 9514: -19,-70 + 9515: -19,-70 + 9516: -20,-65 + 9517: -20,-65 + 9518: -18,-65 + 9519: -18,-65 + 9561: 33,0 + 9562: 33,1 + 9563: 33,2 + 9564: 35,3 + 9565: 37,3 + 9566: 38,2 + 9567: 37,1 + 9568: 33,4 + 9569: 40,2 + 9570: 39,2 + 9571: 39,1 + 9572: 39,1 + 9573: 40,4 + 9574: 39,-1 + 9575: 39,-2 + 9576: 39,-1 + 9577: 39,-1 + 9617: 5,-60 + 9618: 5,-60 + 9619: 5,-60 + 9620: 5,-60 + 9621: 5,-60 + 9798: -53,68 + 9799: -55,70 + 9800: -54,71 + 9801: -54,74 + 9802: -51,75 + 9803: -50,76 + 9804: -47,74 + 9805: -46,72 + 9806: -47,70 + 9807: -47,70 + 9808: -47,68 + 9809: -50,68 + 9810: -49,67 + 9811: -51,67 + 9812: -52,68 + 9864: -33,74 + 9865: -32,73 + 9866: -31,74 + 9867: -31,74 + 9868: -31,74 + 9869: -31,74 + 9870: -31,74 + 9871: -31,75 + 9872: -31,75 + 9873: -32,75 - node: cleanable: True zIndex: 1 @@ -4329,6 +4528,18 @@ entities: 8561: 30.483143,22.477749 8562: 29.489317,22.508635 8563: 29.612774,23.37652 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 9622: 5,-60 + 9623: 5,-60 + 9624: 6,-62 + 9625: 6,-62 + 9626: 6,-62 + 9627: 6,-62 - node: cleanable: True color: '#FFFFFFFF' @@ -4370,29 +4581,76 @@ entities: 7128: -5,-69 7129: 0,-66 7196: 4,-61 - 8323: 40,0 8324: 40,-1 8325: 38,-3 8326: 34,-2 8327: 40,-2 8328: 40,-1 - 8329: 39,-2 8330: 36,-3 - 8331: 40,3 - 8332: 39,2 - 8333: 36,1 - 8334: 35,1 - 8335: 34,2 - 8336: 35,3 - 8337: 35,3 - 8338: 34,3 - 8339: 35,4 - 8340: 37,3 - 8341: 36,2 - 8342: 34,0 - 8343: 33,1 - 8344: 34,2 - 8345: 35,3 + 9378: -59,-24 + 9379: -63,-29 + 9381: -63,-28 + 9382: -61,-26 + 9383: -61,-25 + 9384: -60,-30 + 9385: -62,-23 + 9386: -63,-22 + 9387: -60,-23 + 9388: -63,-22 + 9389: -62,-21 + 9390: -62,-21 + 9391: -62,-21 + 9813: -50,67 + 9814: -46,68 + 9815: -46,70 + 9816: -47,71 + 9817: -54,72 + 9818: -55,73 + 9819: -51,75 + 9820: -50,76 + 9821: -49,76 + 9822: -49,75 + 9823: -52,64 + 9824: -52,65 + 9825: -51,65 + 9826: -51,63 + 9827: -51,61 + 9828: -51,59 + 9829: -52,59 + 9830: -52,60 + 9831: -52,57 + 9832: -52,55 + 9833: -52,55 + 9834: -53,54 + 9835: -52,51 + 9836: -52,49 + 9837: -54,51 + 9838: -50,52 + 9839: -49,52 + 9840: -49,50 + 9841: -49,50 + 9842: -42,68 + 9843: -42,69 + 9844: -42,71 + 9845: -43,71 + 9846: -41,73 + 9847: -40,73 + 9848: -38,74 + 9849: -37,73 + 9850: -43,73 + 9851: -44,72 + 9852: -34,74 + 9853: -33,74 + 9854: -31,73 + 9855: -30,72 + 9856: -31,72 + 9857: -33,72 + 9858: -34,72 + 9859: -32,77 + 9860: -31,78 + 9861: -31,78 + 9862: -29,75 + 9863: -29,75 - node: cleanable: True zIndex: 1 @@ -4428,6 +4686,11 @@ entities: id: FlowersBRThree decals: 7264: 26.104586,-35.788994 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 9634: 3.844667,-59.998734 - node: cleanable: True color: '#8600003C' @@ -4445,6 +4708,11 @@ entities: id: Flowerspv1 decals: 7266: 29.790075,-31.994879 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 9635: 4.798371,-61.027225 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -4461,6 +4729,7 @@ entities: decals: 7258: 26.24314,-34.01442 7259: 28.224497,-32.072487 + 9633: 6.0730624,-60.884834 - node: cleanable: True color: '#8600003C' @@ -4631,6 +4900,9 @@ entities: 1154: 49,-23 1335: 48,-21 5765: 33,-5 + 9129: 48,-31 + 9130: 49,-31 + 9289: 54,-40 - node: color: '#D381C996' id: FullTileOverlayGreyscale @@ -4648,6 +4920,8 @@ entities: 3943: -19,-21 3944: -19,-20 5762: 36,-5 + 9153: 47,60 + 9154: 48,60 - node: zIndex: 1 color: '#D381C996' @@ -4721,6 +4995,10 @@ entities: 8860: 49,48 8861: 49,46 8862: 48,46 + 9056: 29,-8 + 9057: 29,-7 + 9058: 32,-16 + 9059: 33,-16 - node: cleanable: True color: '#5CCD74FF' @@ -4757,6 +5035,12 @@ entities: 2154: -1.157942,30.175095 7267: 16.652384,-34.100002 7269: 11.344307,-31.211573 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassc3 + decals: + 9641: 5.033425,-62.563927 - node: color: '#FFFFFFFF' id: Grassd1 @@ -4784,6 +5068,7 @@ entities: 7524: -6.217932,-59.185604 7675: -3.5938263,-56.260292 7680: -1.5469481,-58.996563 + 9638: 5.0452843,-61.87877 - node: color: '#FFFFFFFF' id: Grassd2 @@ -4815,6 +5100,7 @@ entities: 7536: -6.9667845,-59.92288 7537: -7.3973403,-55.888157 7676: -1.5469494,-57.83951 + 9639: 5.616272,-62.734875 - node: color: '#FFFFFFFF' id: Grassd3 @@ -4828,6 +5114,12 @@ entities: 6346: -12.371423,21.042667 7526: -6.3637667,-55.222935 7535: -5.6820626,-58.1451 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassd3 + decals: + 9642: 5.450092,-61.303795 - node: color: '#FFFFFFFF' id: Grasse1 @@ -4862,6 +5154,7 @@ entities: 6342: -11.392975,19.721764 7529: -8.943234,-55.069675 7679: -2.2657008,-56.79191 + 9640: 5.962713,-59.932472 - node: color: '#FFFFFFFF' id: Grasse3 @@ -4878,6 +5171,13 @@ entities: 4017: 70.72331,43.30718 7528: -6.4679327,-56.7646 7678: -3.7188244,-58.042778 + - node: + color: '#32CD3293' + id: HalfTileOverlayGreyscale + decals: + 9656: -46,59 + 9657: -44,59 + 9661: -45,63 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -4985,19 +5285,12 @@ entities: id: HalfTileOverlayGreyscale decals: 1534: 45,21 - - node: - color: '#8D1C9996' - id: HalfTileOverlayGreyscale - decals: - 1204: 57,-40 - 1205: 55,-40 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: 2454: -12,66 2873: 57,45 - 2874: 56,45 2875: 55,45 2876: 54,45 2877: 53,45 @@ -5026,6 +5319,13 @@ entities: 4240: 40,57 7501: 76,50 8368: 66,50 + - node: + color: '#A020F093' + id: HalfTileOverlayGreyscale + decals: + 9662: -43,59 + 9663: -41,59 + 9666: -42,63 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -5035,8 +5335,6 @@ entities: 1133: 52,-25 1134: 53,-25 1170: 54,-11 - 1191: 58,-40 - 1203: 56,-40 1321: 76,-31 1322: 77,-31 1323: 78,-31 @@ -5062,6 +5360,9 @@ entities: 6261: 61,-19 6262: 62,-19 6275: 62,-24 + 9285: 59,-40 + 9286: 58,-40 + 9287: 57,-40 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -5104,6 +5405,8 @@ entities: 3939: -22,-20 3940: -21,-20 3941: -20,-20 + 9146: 49,56 + 9147: 47,56 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale @@ -5137,13 +5440,14 @@ entities: 5873: 5,45 5929: 44,56 5930: 45,56 - 5931: 46,56 - 5932: 47,56 5935: -23,29 5936: -24,29 5937: -25,29 6328: -12,2 6329: -13,2 + 9400: -61,-30 + 9403: -61,-22 + 9404: -60,-22 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale @@ -5179,12 +5483,6 @@ entities: 2283: -31,60 2284: -32,60 2285: -33,60 - 2358: -49,59 - 2359: -47,59 - 2360: -46,59 - 2361: -44,59 - 2362: -43,59 - 2363: -41,59 2778: 22,59 4220: -31,31 5363: -43,53 @@ -5240,7 +5538,6 @@ entities: 776: 11,-20 777: 12,-20 778: 13,-20 - 801: 27,-16 858: 26,-21 1364: 32,-14 1393: -24,-3 @@ -5252,7 +5549,6 @@ entities: 2790: 48,45 2791: 47,45 2792: 46,45 - 2793: 45,45 2794: 44,45 2795: 43,45 2796: 39,43 @@ -5262,8 +5558,6 @@ entities: 2802: 34,43 2804: 29,43 2805: 30,43 - 2806: 31,43 - 2807: 32,43 2808: 33,43 2811: 34,47 4724: 35,43 @@ -5287,7 +5581,6 @@ entities: 6622: 17,-16 6623: 18,-16 6629: 27,-26 - 7844: 48,-1 7863: 53,2 7865: 57,0 7866: 56,0 @@ -5298,6 +5591,16 @@ entities: 8346: 38,-2 8802: 2,20 8803: 3,20 + 8991: 48,1 + 8993: 46,0 + 9006: 26,-15 + 9024: 8,-14 + 9025: 9,-14 + 9030: 11,-15 + 9044: 2,-19 + 9045: 3,-19 + 9046: 4,-19 + 9069: 29,-9 - node: zIndex: 1 color: '#EFB34196' @@ -5317,6 +5620,13 @@ entities: 190: -28,-42 191: -27,-42 204: -31,-42 + - node: + color: '#FFA50093' + id: HalfTileOverlayGreyscale + decals: + 9652: -48,63 + 9654: -49,59 + 9655: -47,59 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -5346,6 +5656,7 @@ entities: decals: 8008: 17,-14 8009: 18,-14 + 9007: 15,-13 - node: color: '#43990996' id: HalfTileOverlayGreyscale180 @@ -5436,7 +5747,6 @@ entities: decals: 1108: 55,-38 1113: 58,-33 - 1216: 58,-41 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -5474,7 +5784,6 @@ entities: 1159: 53,-22 1179: 56,-25 1180: 57,-25 - 1202: 57,-41 1315: 76,-33 1316: 77,-33 1317: 78,-33 @@ -5592,6 +5901,11 @@ entities: 6333: -13,1 6334: -12,1 6335: -11,1 + 9281: 59,-41 + 9282: 58,-41 + 9283: 57,-41 + 9401: -60,-28 + 9402: -61,-28 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale180 @@ -5655,13 +5969,6 @@ entities: 708: 32,-24 709: 31,-24 710: 30,-24 - 711: 29,-24 - 729: 38,-29 - 730: 37,-29 - 731: 36,-29 - 732: 35,-29 - 733: 34,-29 - 734: 33,-29 735: 31,-29 736: 30,-29 737: 29,-29 @@ -5677,9 +5984,6 @@ entities: 754: 17,-29 755: 19,-29 756: 18,-29 - 769: 12,-16 - 770: 13,-16 - 771: 14,-16 783: 10,-24 784: 9,-24 785: 11,-24 @@ -5694,14 +5998,10 @@ entities: 817: 24,-18 859: 26,-24 1362: 30,-17 - 1363: 31,-17 1391: -23,-8 1392: -22,-8 2401: -48,24 - 2784: 45,47 2785: 44,47 - 2809: 32,45 - 2810: 31,45 6038: 30,45 6040: 33,45 6041: 34,45 @@ -5724,6 +6024,14 @@ entities: 8907: 55,-6 8908: 56,-6 8909: 57,-6 + 9027: 9,-17 + 9028: 10,-17 + 9048: 2,-21 + 9051: 3,-21 + 9052: 4,-21 + 9068: 29,-11 + 9104: 33,-29 + 9127: 34,-29 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -5734,6 +6042,12 @@ entities: 6050: -33,-45 8386: -29,-45 8387: -28,-45 + - node: + color: '#32CD3293' + id: HalfTileOverlayGreyscale270 + decals: + 9658: -46,61 + 9659: -46,62 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -5832,11 +6146,7 @@ entities: decals: 1104: 56,-31 1106: 55,-34 - 1209: 55,-46 - 1210: 55,-44 - 1211: 55,-42 1349: 56,-29 - 4599: 55,-48 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -5846,23 +6156,24 @@ entities: 2458: -13,61 2459: -13,65 2872: 53,48 + - node: + color: '#A020F093' + id: HalfTileOverlayGreyscale270 + decals: + 9664: -43,61 + 9665: -43,62 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 1118: 55,-33 1119: 56,-30 1120: 55,-35 1142: 49,-26 1143: 49,-25 1174: 46,-19 - 1192: 55,-43 - 1193: 55,-45 - 1194: 55,-47 1333: 46,-20 1339: 46,-17 1340: 46,-15 - 4603: 55,-49 5295: 50,-13 5308: 49,-17 5322: 52,-18 @@ -5905,6 +6216,10 @@ entities: 4506: -27,-31 4728: -18,-24 6090: -27,-30 + 9148: 50,57 + 9149: 50,58 + 9151: 50,59 + 9152: 47,59 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale270 @@ -5930,9 +6245,6 @@ entities: 5881: 18,28 5882: 18,29 5883: 18,30 - 5925: 48,57 - 5926: 48,58 - 5927: 48,59 5961: 33,-7 5962: 33,-6 6432: -17,-16 @@ -5942,10 +6254,22 @@ entities: 6436: -17,-12 6437: -17,-11 7413: -14,-1 - 7420: -63,-27 - 7421: -63,-26 - 7422: -63,-25 - 7424: -63,-23 + 9266: 55,-50 + 9267: 55,-49 + 9268: 55,-48 + 9269: 55,-47 + 9270: 55,-46 + 9271: 55,-45 + 9272: 55,-44 + 9273: 55,-42 + 9405: -63,-27 + 9406: -63,-26 + 9407: -63,-25 + 9408: -63,-23 + 9409: -63,-22 + 9410: -63,-20 + 9411: -63,-30 + 9412: -63,-28 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale270 @@ -5976,7 +6300,6 @@ entities: 2327: -18,36 2328: -18,37 2329: -19,39 - 2330: -19,40 2331: -18,42 2332: -18,43 2333: -18,44 @@ -6009,8 +6332,6 @@ entities: 743: 20,-32 744: 20,-33 757: 20,-30 - 767: 11,-15 - 768: 11,-14 779: 8,-20 780: 8,-21 781: 8,-22 @@ -6055,9 +6376,6 @@ entities: 7952: 57,4 7953: 57,5 7954: 57,6 - 8223: 39,-1 - 8224: 39,0 - 8236: 39,2 8781: 1,19 8782: 1,17 8783: 1,18 @@ -6065,12 +6383,21 @@ entities: 8785: 1,14 8786: 1,13 8787: 1,12 + 8994: 29,-22 + 8995: 29,-23 + 9055: 1,-20 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 decals: 182: -36,-44 183: -36,-43 + - node: + color: '#FFA50093' + id: HalfTileOverlayGreyscale270 + decals: + 9649: -49,61 + 9650: -49,62 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -6173,10 +6500,6 @@ entities: 1110: 61,-30 1114: 57,-34 1115: 57,-36 - 1212: 56,-43 - 1213: 56,-45 - 1214: 56,-47 - 4601: 56,-49 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -6199,6 +6522,9 @@ entities: 7570: -58,31 8369: 72,48 8370: 72,49 + 9101: 38,-31 + 9102: 38,-32 + 9103: 38,-33 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -6209,13 +6535,9 @@ entities: 1136: 54,-27 1137: 54,-28 1138: 54,-29 - 1195: 56,-46 - 1196: 56,-44 - 1197: 56,-42 1341: 63,-16 1342: 63,-15 1343: 63,-14 - 4602: 56,-48 5313: 48,-18 5314: 48,-17 5315: 48,-16 @@ -6330,10 +6652,21 @@ entities: 6442: -15,-12 6443: -15,-11 7415: -13,-1 - 7425: -61,-27 - 7426: -61,-26 - 7427: -61,-25 - 7428: -61,-24 + 9274: 56,-48 + 9275: 56,-47 + 9276: 56,-46 + 9277: 56,-45 + 9278: 56,-44 + 9279: 56,-43 + 9280: 56,-42 + 9392: -59,-21 + 9393: -59,-22 + 9394: -59,-23 + 9395: -59,-24 + 9396: -59,-25 + 9397: -59,-26 + 9398: -59,-29 + 9399: -59,-31 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale90 @@ -6363,7 +6696,6 @@ entities: 2293: -34,48 2309: -33,37 2321: -21,39 - 2322: -21,40 2781: 23,57 2782: 23,58 4217: -33,32 @@ -6434,9 +6766,13 @@ entities: 7947: 55,4 7948: 55,5 7949: 55,6 - 8230: 40,0 - 8234: 40,2 - 8235: 40,3 + 9039: 11,-16 + 9061: 31,-16 + 9062: 31,-9 + 9063: 31,-10 + 9065: 31,-13 + 9067: 31,-7 + 9070: 31,-12 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -6719,6 +7055,7 @@ entities: 130: -28,-22 635: -7,-27 5605: -32,-38 + 9144: 50,56 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -6726,7 +7063,6 @@ entities: 1883: -18,11 5851: -4,45 5852: -11,45 - 5933: 48,56 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -6789,14 +7125,12 @@ entities: 6485: -28,-4 6486: -28,-3 7830: 42,-8 - 7846: 49,-1 7847: 44,0 7917: 57,-4 7923: 56,-2 7924: 55,-4 7926: 57,-2 7934: 55,-3 - 8225: 39,-2 8232: 33,-2 8233: 34,-2 8882: 58,7 @@ -6805,6 +7139,7 @@ entities: 8885: 61,7 8886: 62,-3 8887: 61,-2 + 8989: 47,0 - node: zIndex: 1 color: '#EFB34196' @@ -6958,7 +7293,6 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 1111: 60,-31 - 1215: 56,-41 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 @@ -7004,6 +7338,7 @@ entities: 5959: 34,-8 5960: 36,-7 6336: -15,1 + 9284: 56,-41 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -7049,13 +7384,7 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 759: 23,-29 - 1367: 31,-11 - 1368: 31,-12 - 1369: 31,-13 1389: -21,-7 - 5768: 31,-10 - 5769: 31,-9 - 5770: 31,-7 7840: 43,-2 7914: 54,-1 7918: 56,-1 @@ -7077,6 +7406,7 @@ entities: 8799: 13,12 8888: 60,-1 8889: 61,-2 + 9106: 38,-29 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 @@ -7101,6 +7431,11 @@ entities: 6468: -12,27 6469: -11,27 6470: -10,27 + - node: + color: '#3EB38896' + id: QuarterTileOverlayGreyscale270 + decals: + 9008: 16,-13 - node: color: '#52B4E956' id: QuarterTileOverlayGreyscale270 @@ -7162,7 +7497,6 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 1201: 55,-41 6253: 56,-22 - node: color: '#D381C996' @@ -7283,16 +7617,12 @@ entities: 2620: 17,60 2621: 17,61 2824: 50,55 - 5774: 29,-11 - 5775: 29,-10 - 5776: 29,-9 - 5777: 29,-8 - 5778: 29,-7 6620: 19,-18 7838: 42,3 7845: 49,-2 7931: 57,-1 8891: 62,-1 + 9128: 35,-29 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -7496,6 +7826,9 @@ entities: 7932: 54,-4 8238: 10,-20 8890: 60,-3 + 9009: 27,-16 + 9042: 10,-15 + 9066: 31,-14 - node: color: '#FFFFFFFF' id: Rock01 @@ -7575,6 +7908,11 @@ entities: id: SpaceStationSign7 decals: 1867: -19,9 + - node: + color: '#32CD3293' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9660: -46,63 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale @@ -7626,6 +7964,11 @@ entities: 2869: 53,49 2870: 54,50 2920: 67,52 + - node: + color: '#A020F093' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9667: -43,63 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale @@ -7633,7 +7976,6 @@ entities: 1129: 54,-36 1130: 49,-24 1168: 53,-11 - 1200: 54,-40 1347: 56,-28 5291: 46,-14 5292: 50,-12 @@ -7652,7 +7994,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 7409: -14,0 - 7419: -63,-22 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale @@ -7685,11 +8026,18 @@ entities: 7860: 52,2 8042: 53,-3 8801: 1,20 + 8990: 47,1 + 9053: 1,-19 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale decals: 200: -36,-42 + - node: + color: '#FFA50093' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9653: -49,63 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale180 @@ -7735,8 +8083,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 1124: 61,-31 - 1198: 59,-41 - 4604: 56,-50 5331: 51,-18 5335: 58,-17 6239: 58,-25 @@ -7784,6 +8130,8 @@ entities: 2830: 48,47 6039: 35,45 8231: 40,-3 + 9040: 11,-17 + 9060: 31,-17 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 @@ -7822,12 +8170,6 @@ entities: decals: 609: 6,-53 1538: 43,16 - - node: - color: '#8D1C9996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1206: 54,-41 - 4600: 55,-50 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -7843,18 +8185,19 @@ entities: 5332: 49,-18 5340: 49,-22 5500: 54,-17 + 9292: 54,-38 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: 118: -39,-36 4517: -27,-32 + 9131: 47,58 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale270 decals: 7417: -14,-2 - 7418: -63,-28 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 @@ -7873,7 +8216,6 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 766: 11,-16 773: 8,-24 792: 16,-18 793: 25,-19 @@ -7885,6 +8227,8 @@ entities: 8041: 52,0 8800: 1,11 8910: 53,-6 + 8996: 29,-24 + 9054: 1,-21 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 @@ -7933,11 +8277,6 @@ entities: 610: 8,-51 1540: 47,17 1541: 46,21 - - node: - color: '#8D1C9996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1208: 59,-40 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 @@ -7992,6 +8331,8 @@ entities: 1387: -20,-3 2829: 48,53 7864: 55,2 + 8992: 50,1 + 9041: 10,-14 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale90 @@ -8064,7 +8405,7 @@ entities: 2697: 12,84 2698: 25,84 2699: 26,82 - 8185: 35,3 + 9540: 35,3 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -8074,7 +8415,7 @@ entities: 2700: 10,82 2701: 11,84 2742: 24,84 - 8184: 33,3 + 9541: 33,3 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8097,7 +8438,7 @@ entities: 2693: 12,72 2694: 25,72 2695: 26,77 - 8177: 35,1 + 9539: 35,1 - node: zIndex: 1 color: '#EFB341FF' @@ -8113,20 +8454,22 @@ entities: 2691: 24,72 2692: 11,72 2696: 10,77 - 8183: 33,1 + 9542: 33,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: 886: 13,-22 - 902: 10,-17 2746: 25,82 + 9546: 33,0 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 885: 18,-22 2743: 11,82 + 9547: 35,0 + 9548: 36,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -8137,13 +8480,21 @@ entities: 602: -16,-46 1260: 57,-37 2745: 25,77 + 9551: 33,4 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 905: 9,-15 1253: 57,-25 2744: 11,77 + 9549: 36,3 + 9550: 35,4 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 9034: 9,-15 - node: color: '#439909FF' id: WarnEndE @@ -8213,9 +8564,6 @@ entities: 877: 23,-21 878: 13,-21 879: 13,-20 - 895: 10,-16 - 896: 10,-15 - 897: 10,-14 1259: 57,-38 2069: -15,5 2070: -15,6 @@ -8256,7 +8604,6 @@ entities: 4606: 59,-49 4616: 59,-50 5598: -35,62 - 8195: 35,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8265,6 +8612,9 @@ entities: 8718: -38,66 8719: -38,67 8720: -38,68 + 9036: 11,-17 + 9037: 11,-16 + 9038: 11,-15 - node: color: '#FFFFFFFF' id: WarnLineN @@ -8291,7 +8641,6 @@ entities: 215: -45,-34 576: -4,-44 577: 0,-44 - 906: 8,-15 973: -1,-14 1244: 59,-15 1252: 56,-25 @@ -8310,7 +8659,6 @@ entities: 5522: -29,66 5523: -28,66 5524: -27,66 - 8192: 34,1 8297: 13,-12 8298: 14,-12 8299: 15,-12 @@ -8325,6 +8673,17 @@ entities: 8735: 61,9 8736: 62,9 8737: 57,9 + 9000: 12,-12 + 9001: 11,-12 + 9002: 10,-12 + 9003: 9,-12 + 9545: 34,4 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineN + decals: + 9035: 8,-15 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8352,8 +8711,6 @@ entities: 872: 20,-22 873: 20,-21 884: 18,-21 - 903: 9,-17 - 904: 9,-16 1431: -37,-11 1715: 36,17 2060: -13,5 @@ -8395,7 +8752,7 @@ entities: 2944: 57,54 2945: 57,55 5597: -36,62 - 8193: 33,2 + 9543: 36,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8407,6 +8764,8 @@ entities: 8715: -33,66 8716: -33,67 8717: -33,68 + 9032: 9,-17 + 9033: 9,-16 - node: color: '#FFFFFFFF' id: WarnLineW @@ -8430,10 +8789,6 @@ entities: 881: 16,-22 882: 15,-22 883: 17,-22 - 898: 11,-17 - 899: 12,-17 - 900: 13,-17 - 901: 14,-17 974: -1,-14 1249: 59,-15 1417: -32,-10 @@ -8445,7 +8800,6 @@ entities: 2223: -30,49 2375: -37,62 2378: -34,62 - 8194: 34,3 8305: 14,4 8306: 15,4 8307: 16,4 @@ -8453,6 +8807,7 @@ entities: 8309: 18,4 8310: 19,4 8311: 20,4 + 9544: 34,0 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -8497,37 +8852,11 @@ entities: id: WoodTrimThinInnerNe decals: 7551: -22,-55 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 6915: -13,73 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: 6726: -24,0 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 6914: -4,73 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 6910: -13,73 - 6911: -13,76 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 6912: -4,76 - 6913: -4,73 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -8543,15 +8872,6 @@ entities: 5759: -42,32 6727: -24,0 7540: -20,-56 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 6906: -13,71 - 6907: -13,72 - 6908: -13,74 - 6909: -13,75 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -8577,27 +8897,6 @@ entities: 8376: 13,51 8377: 14,51 8378: 15,51 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 6872: -12,76 - 6873: -11,76 - 6874: -10,76 - 6875: -9,76 - 6876: -8,76 - 6877: -7,76 - 6878: -6,76 - 6879: -5,76 - 6880: -5,73 - 6881: -6,73 - 6882: -7,73 - 6883: -8,73 - 6884: -9,73 - 6885: -10,73 - 6886: -11,73 - 6887: -12,73 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -8608,27 +8907,6 @@ entities: 7544: -23,-57 7545: -22,-57 7546: -21,-57 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 6888: -12,76 - 6889: -11,76 - 6890: -10,76 - 6891: -9,76 - 6892: -8,76 - 6893: -7,76 - 6894: -6,76 - 6895: -5,76 - 6896: -5,73 - 6897: -6,73 - 6898: -7,73 - 6899: -8,73 - 6900: -9,73 - 6901: -10,73 - 6902: -11,73 - 6903: -12,73 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -8646,18 +8924,6 @@ entities: 8372: 11,47 8373: 11,48 8374: 11,49 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 6867: -13,71 - 6868: -13,72 - 6869: -13,73 - 6870: -4,74 - 6871: -4,75 - 6904: -4,71 - 6905: -4,72 - node: cleanable: True color: '#780000FF' @@ -8676,6 +8942,12 @@ entities: id: arrow decals: 7134: -1,-66 + - node: + cleanable: True + color: '#FFFFFFFF' + id: body + decals: + 9704: -54.01239,56.214497 - node: cleanable: True color: '#FFFFFFFF' @@ -8736,6 +9008,25 @@ entities: 5225: -46.56901,-13.125473 5226: -46.193733,-12.893991 5227: -45.901848,-13.130102 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FF000019' + id: footprint + decals: + 9709: -55.204544,57.35501 + 9710: -55.016273,57.10175 + 9711: -54.559483,57.01218 + 9712: -54.917507,57.568123 + 9713: -55.182938,57.836826 + - node: + cleanable: True + angle: 3.9269908169872414 rad + color: '#FF000019' + id: footprint + decals: + 9707: -54.94837,56.814514 + 9708: -54.83726,57.216026 - node: cleanable: True color: '#8600003C' @@ -8778,6 +9069,14 @@ entities: id: revolution decals: 6670: -20.968155,61.005226 + - node: + cleanable: True + color: '#FF0000FF' + id: revolution + decals: + 9644: 3.5085063,-61.033157 + 9645: 6.0640616,-61.992157 + 9646: 5.022396,-59.949074 - node: cleanable: True angle: 0.05235987755982989 rad @@ -8800,6 +9099,32 @@ entities: 4348: -43.279102,-46.79024 4349: -43.888477,-48.399616 4350: -45.903927,-47.07149 + - node: + cleanable: True + color: '#894A0067' + id: splatter + decals: + 9732: -56.899662,59.249393 + - node: + cleanable: True + color: '#EC000019' + id: splatter + decals: + 9731: -55.007996,61.89848 + - node: + cleanable: True + color: '#FF000019' + id: splatter + decals: + 9668: -54.08878,56.11026 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#FF000019' + id: splatter + decals: + 9705: -54.38739,56.499416 + 9706: -54.380444,56.061615 - type: GridAtmosphere version: 2 data: @@ -8867,9 +9192,9 @@ entities: 0: 51404 3,2: 2: 817 - 0: 36040 + 0: 3272 3,3: - 0: 65467 + 0: 65399 3,-1: 2: 4096 0: 52479 @@ -8880,10 +9205,10 @@ entities: 4,1: 0: 43775 4,2: - 0: 816 + 0: 4912 2: 52416 4,3: - 0: 4353 + 0: 4369 2: 52428 -4,0: 0: 32767 @@ -8957,14 +9282,16 @@ entities: 2: 32768 -3,-5: 0: 44687 + -2,-4: + 0: 32819 -2,-3: 2: 61440 0: 136 -2,-2: 0: 240 2: 61440 - -2,-4: - 0: 32768 + -2,-5: + 0: 4794 -1,-4: 0: 64989 -1,-3: @@ -8986,7 +9313,7 @@ entities: 1,-3: 0: 25668 2,-4: - 0: 4095 + 0: 2047 2,-3: 0: 65535 2,-2: @@ -8994,7 +9321,7 @@ entities: 2,-5: 0: 62079 3,-4: - 0: 57463 + 0: 61559 3,-3: 0: 65535 3,-2: @@ -9039,19 +9366,16 @@ entities: 0: 63931 -2,-9: 0: 56829 - -2,-5: - 2: 8192 -1,-8: 0: 28912 -1,-7: 0: 2047 -1,-6: - 0: 33023 - 2: 8192 + 0: 45567 + -1,-5: + 0: 51 -1,-9: 0: 56829 - -1,-5: - 2: 50 0,-8: 0: 14576 0,-7: @@ -9095,11 +9419,12 @@ entities: 4,-5: 0: 65411 -8,-4: - 2: 48 - 0: 63624 + 0: 64440 + -8,-5: + 2: 12288 + 0: 32887 -9,-4: - 2: 128 - 0: 61747 + 0: 63731 -8,-3: 1: 272 0: 224 @@ -9111,9 +9436,6 @@ entities: -8,-1: 2: 8736 0: 49152 - -8,-5: - 0: 32887 - 2: 12288 -7,-4: 0: 45279 -7,-3: @@ -9251,14 +9573,13 @@ entities: -13,-4: 0: 61024 -11,-4: - 0: 61713 - 2: 192 + 0: 62365 -11,-5: - 0: 4111 - 2: 3072 + 0: 53263 -10,-4: - 2: 112 - 0: 61440 + 0: 61815 + -10,-5: + 0: 30479 -10,-3: 1: 2176 -13,-8: @@ -9275,7 +9596,7 @@ entities: 0: 3581 -13,-5: 2: 136 - 0: 62003 + 0: 57907 -12,-9: 0: 61166 -11,-8: @@ -9292,9 +9613,6 @@ entities: 0: 61644 -10,-6: 0: 65535 - -10,-5: - 0: 15 - 2: 1792 -10,-9: 0: 61182 -4,-12: @@ -9410,48 +9728,52 @@ entities: 0: 12288 2: 2048 -16,-8: - 0: 61376 + 0: 28608 -17,-8: 0: 35840 -16,-7: - 0: 61159 + 0: 61167 -17,-7: 0: 12 2: 50176 -16,-6: - 0: 59374 + 0: 61422 -17,-6: 0: 35840 2: 4 -16,-5: - 0: 207 + 0: 35023 -17,-5: 0: 12 -15,-8: - 0: 16106 - -15,-6: - 0: 12834 + 0: 15290 -15,-7: - 0: 8738 + 0: 13107 2: 32768 + -15,-6: + 0: 9011 + -16,-4: + 0: 2184 -15,-5: - 0: 52906 + 0: 54506 -15,-9: - 0: 61164 + 0: 65527 -15,-4: - 0: 36044 + 0: 56797 -14,-7: 2: 4369 0: 3276 -14,-5: - 0: 64139 + 0: 63739 -14,-8: 0: 3822 -14,-6: 2: 273 0: 3276 + -14,-4: + 0: 65535 -14,-9: - 0: 58621 + 0: 58620 -16,-12: 2: 19524 -16,-13: @@ -9463,18 +9785,16 @@ entities: 2: 61422 -15,-11: 2: 3918 + -15,-10: + 0: 24584 -15,-13: 2: 59968 1: 5284 -14,-11: 2: 257 0: 17612 - -15,-10: - 0: 8 - 2: 2048 -14,-10: - 0: 17487 - 2: 256 + 0: 30543 -14,-12: 0: 49356 -14,-13: @@ -9505,6 +9825,7 @@ entities: 2: 57360 1: 256 -14,-14: + 0: 290 1: 4096 2: 10820 -13,-15: @@ -9519,26 +9840,43 @@ entities: 2: 61440 -11,-14: 0: 64256 + -11,-16: + 2: 58030 + -11,-17: + 2: 41646 + -10,-16: + 2: 58111 -10,-14: 0: 16368 + -10,-17: + 2: 62207 -10,-15: 0: 61152 + -9,-16: + 2: 2047 -9,-14: 0: 4084 + -9,-17: + 2: 63487 -9,-15: 0: 60142 + -8,-16: + 2: 767 -8,-15: 0: 65535 -8,-14: 0: 4087 -8,-13: 2: 1792 + -8,-17: + 2: 62207 + -7,-16: + 2: 1 + 0: 17608 -7,-15: 0: 26469 -7,-14: 0: 30582 - -7,-16: - 0: 17608 -6,-16: 0: 65039 -6,-15: @@ -9554,7 +9892,7 @@ entities: -5,-14: 0: 40413 -5,-17: - 0: 52364 + 0: 64187 -4,-16: 0: 56769 -4,-15: @@ -9598,29 +9936,29 @@ entities: 0,-15: 0: 36394 1,-16: - 0: 30304 + 0: 30560 1,-15: - 0: 4375 - 2: 17408 + 0: 63255 1,-14: - 0: 53521 - 2: 76 + 0: 53745 1,-13: - 0: 60317 + 0: 64413 1,-17: 2: 4369 1,-12: 0: 65294 + 2,-15: + 0: 28672 2,-14: - 2: 19 - 0: 4096 + 0: 54374 2,-13: - 0: 21521 - 2: 4 + 0: 21525 2,-12: 0: 21831 + 3,-15: + 0: 12800 3,-14: - 0: 14096 + 0: 14099 3,-13: 0: 13111 3,-12: @@ -9663,7 +10001,7 @@ entities: 6,-6: 0: 61166 6,-4: - 0: 127 + 0: 255 1: 12288 2: 49152 6,-9: @@ -9681,7 +10019,7 @@ entities: 7,-4: 0: 61133 8,-8: - 0: 61917 + 0: 61883 8,-7: 0: 4095 8,-6: @@ -9774,31 +10112,31 @@ entities: 9,-1: 0: 36848 9,0: - 0: 64443 + 0: 65531 10,-4: 0: 65535 10,-3: 0: 56799 10,-1: 0: 65500 - 10,0: - 0: 56797 10,-2: 0: 52428 10,-5: 0: 52703 + 10,0: + 0: 56796 11,-4: 0: 57309 11,-3: 0: 57565 11,-2: - 0: 12046 + 0: 28430 11,-1: - 0: 65439 + 0: 65431 11,-5: 0: 56797 11,0: - 0: 58023 + 0: 58031 12,-4: 0: 65535 12,-3: @@ -9812,7 +10150,7 @@ entities: 8,4: 0: 48059 9,1: - 0: 65291 + 0: 65295 9,2: 0: 63343 9,3: @@ -9836,7 +10174,7 @@ entities: 11,4: 0: 63487 12,0: - 0: 12401 + 0: 12407 12,1: 0: 3003 12,2: @@ -9844,9 +10182,9 @@ entities: 12,3: 0: 44943 8,-9: - 0: 54783 + 0: 47615 9,-8: - 0: 28791 + 0: 29559 9,-7: 0: 1919 9,-6: @@ -9870,7 +10208,7 @@ entities: 11,-6: 0: 56799 11,-9: - 0: 29439 + 0: 29425 12,-8: 0: 65464 12,-7: @@ -9892,34 +10230,43 @@ entities: 7,-13: 0: 52430 8,-11: - 0: 4078 + 0: 4074 8,-10: 0: 15291 + 7,-15: + 0: 50176 7,-14: - 0: 52864 + 0: 52876 + 8,-14: + 0: 30242 8,-12: - 2: 224 + 0: 41642 + 8,-13: + 0: 58082 9,-12: - 2: 2298 + 0: 4113 + 2: 2248 + 9,-11: + 0: 4081 9,-10: 0: 35771 9,-13: - 2: 43770 + 0: 4113 + 2: 35016 10,-12: 2: 12287 + 10,-11: + 0: 36832 10,-10: - 0: 4095 + 0: 35771 10,-13: 2: 12287 - 10,-11: - 2: 546 11,-12: 2: 65535 11,-11: - 2: 273 - 0: 16580 + 0: 16852 11,-10: - 0: 57422 + 0: 20814 11,-13: 2: 61439 12,-12: @@ -9928,15 +10275,12 @@ entities: 12,-11: 0: 58622 12,-10: - 0: 47779 + 0: 47919 12,-9: 0: 48059 - 8,-14: - 2: 224 - 8,-13: - 2: 224 9,-14: - 2: 43770 + 2: 35066 + 0: 4096 9,-16: 2: 11776 9,-15: @@ -9967,9 +10311,9 @@ entities: 13,-11: 0: 63722 13,-10: - 0: 56732 + 0: 56717 13,-9: - 0: 48028 + 0: 64412 13,-8: 0: 63259 13,-13: @@ -9977,6 +10321,7 @@ entities: 2: 52 14,-12: 0: 4369 + 2: 3072 14,-11: 0: 61713 14,-10: @@ -9988,11 +10333,15 @@ entities: 2: 4 14,-8: 0: 65535 + 15,-12: + 2: 4368 15,-9: 0: 4351 2: 52224 15,-13: 0: 4352 + 15,-11: + 2: 17 15,-8: 0: 13105 15,-10: @@ -10751,19 +11100,21 @@ entities: 11,13: 0: 61695 12,14: - 0: 65535 + 0: 56799 11,14: - 0: 30479 + 0: 47887 12,15: - 0: 65532 + 0: 65481 + 11,15: + 0: 30491 12,16: - 0: 634 + 0: 626 13,13: 0: 65485 13,14: 0: 7645 13,15: - 0: 64988 + 0: 57308 13,16: 0: 4381 2: 51200 @@ -10811,8 +11162,6 @@ entities: 10,16: 0: 12 2: 8720 - 11,15: - 0: 30487 11,16: 0: 7 2: 41472 @@ -11049,8 +11398,8 @@ entities: -4,18: 0: 35071 -4,19: - 2: 32832 0: 8 + 2: 32768 -3,17: 0: 62718 -3,18: @@ -11068,7 +11417,7 @@ entities: 2: 1092 -1,19: 0: 1 - 2: 4128 + 2: 4096 1,21: 2: 34952 2,21: @@ -11125,9 +11474,10 @@ entities: 2: 3 0: 36736 -14,12: - 2: 22003 + 2: 4403 + 0: 49280 -13,12: - 0: 60136 + 0: 64504 -19,11: 2: 52224 -19,12: @@ -11151,25 +11501,25 @@ entities: -15,13: 2: 8191 -15,14: - 2: 3 + 2: 15 + 0: 32768 -15,15: - 0: 3212 + 0: 2184 -14,13: - 2: 20309 - -14,15: - 0: 4079 + 2: 273 + 0: 1036 -14,14: - 0: 35016 - -14,16: - 2: 17604 - -13,15: - 0: 43938 + 0: 28774 + -14,15: + 0: 32631 -13,13: - 0: 59950 + 0: 64318 -13,14: - 0: 43690 + 0: 47803 + -13,15: + 0: 43939 -13,16: - 0: 57570 + 0: 61683 -12,13: 0: 45966 -12,14: @@ -11215,8 +11565,7 @@ entities: -7,13: 0: 56784 -7,14: - 0: 63233 - 2: 4 + 0: 63237 -7,15: 0: 29431 -7,16: @@ -11231,63 +11580,73 @@ entities: 0: 1395 2: 16384 -14,17: - 2: 17484 + 0: 61132 -14,18: - 2: 2244 - -13,18: - 2: 61745 - 0: 8 + 0: 52462 + -14,16: + 2: 1088 -13,17: - 0: 52974 - -12,16: - 0: 61680 - -12,17: 0: 65535 - -12,18: + -13,18: + 0: 65535 + -13,19: 0: 15 - 2: 63488 + -12,16: + 0: 1776 + -12,17: + 0: 30527 + -12,18: + 0: 13175 + 2: 32768 -11,16: 0: 29808 -11,17: - 0: 21845 + 0: 30071 -11,18: - 0: 13 - 2: 62464 + 0: 127 + 2: 28672 -10,17: 2: 3857 0: 12 -10,18: - 0: 15 - 2: 61440 + 0: 20415 + -10,19: + 0: 61439 -9,17: 0: 15 2: 3840 -9,18: - 0: 15 - 2: 61440 + 0: 1887 + -9,19: + 0: 273 + 2: 1024 -8,17: 2: 256 0: 3276 -8,18: - 0: 15 - 2: 61952 + 0: 65535 + -8,19: + 0: 53205 -7,17: 0: 819 -7,18: - 0: 15 - 2: 29696 + 0: 4383 + 2: 17408 + -7,19: + 0: 13105 -6,18: 0: 15 + 2: 32768 -6,17: 2: 1092 -5,18: 0: 631 - -14,-4: - 0: 65520 + -6,19: + 2: 8 + -5,-18: + 0: 48000 -4,-18: 2: 3584 - -5,-18: - 0: 51200 -3,-18: 2: 18176 -2,-18: @@ -11299,8 +11658,25 @@ entities: 0: 4095 0,-18: 0: 29440 + -8,-18: + 2: 62192 + -9,-18: + 2: 62192 + -7,-18: + 2: 65535 + -7,-17: + 2: 255 + -6,-18: + 2: 6001 + -6,-17: + 2: 1041 + 0: 14 -17,-13: 1: 4 + -11,-18: + 2: 41696 + -10,-18: + 2: 62192 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11428,6 +11804,14 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap +- proto: AcousticGuitarInstrument + entities: + - uid: 29038 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 26.526651,-21.486578 + parent: 12 - proto: ActionStethoscope entities: - uid: 4711 @@ -11438,6 +11822,13 @@ entities: container: 12708 - proto: ActionToggleBlock entities: + - uid: 11047 + components: + - type: Transform + parent: 4565 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4565 - uid: 19882 components: - type: Transform @@ -11458,6 +11849,13 @@ entities: container: 31201 - proto: ActionToggleInternals entities: + - uid: 899 + components: + - type: Transform + parent: 28460 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 28460 - uid: 2687 components: - type: Transform @@ -11476,18 +11874,20 @@ entities: parent: 5895 - type: InstantAction container: 5895 - - uid: 9079 + - uid: 6678 components: - type: Transform - parent: 2681 + parent: 31675 - type: InstantAction - container: 2681 - - uid: 9083 + originalIconColor: '#FFFFFFFF' + container: 31675 + - uid: 6679 components: - type: Transform - parent: 2680 + parent: 31364 - type: InstantAction - container: 2680 + originalIconColor: '#FFFFFFFF' + container: 31364 - uid: 9757 components: - type: Transform @@ -11560,6 +11960,20 @@ entities: container: 28698 - proto: ActionToggleLight entities: + - uid: 5528 + components: + - type: Transform + parent: 26655 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 26655 + - uid: 5542 + components: + - type: Transform + parent: 26694 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 26694 - uid: 5596 components: - type: Transform @@ -11655,6 +12069,9 @@ entities: - type: Transform pos: 56.5,65.5 parent: 12 + - type: DeviceList + devices: + - 616 - uid: 377 components: - type: Transform @@ -11725,6 +12142,37 @@ entities: - 9316 - 9317 - 9314 + - uid: 706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-50.5 + parent: 12 + - type: DeviceList + devices: + - 8423 + - 2824 + - 4155 + - 6980 + - 6973 + - 8416 + - 8351 + - uid: 752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-41.5 + parent: 12 + - type: DeviceList + devices: + - 8541 + - 8542 + - 6708 + - 690 + - 7617 + - 7618 + - 27433 + - 704 - uid: 921 components: - type: Transform @@ -11740,6 +12188,21 @@ entities: - 2097 - 1135 - 1146 + - uid: 1169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-50.5 + parent: 12 + - type: DeviceList + devices: + - 26030 + - 25984 + - 6005 + - 6175 + - 6981 + - 6977 + - 23101 - uid: 1288 components: - type: Transform @@ -11753,6 +12216,17 @@ entities: - 9302 - 4266 - 9305 + - uid: 1375 + components: + - type: Transform + pos: 38.5,5.5 + parent: 12 + - type: DeviceList + devices: + - 1348 + - 2680 + - 2416 + - 6197 - uid: 1699 components: - type: Transform @@ -11838,17 +12312,6 @@ entities: - 2100 - 1250 - 2081 - - uid: 2682 - components: - - type: Transform - pos: 35.5,5.5 - parent: 12 - - type: DeviceList - devices: - - 26593 - - 2684 - - 26415 - - 4787 - uid: 2852 components: - type: Transform @@ -11943,18 +12406,6 @@ entities: - 26312 - 28364 - 29393 - - uid: 4887 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 12 - - type: DeviceList - devices: - - 28375 - - 9321 - - 5255 - - 5316 - - 5305 - uid: 4906 components: - type: Transform @@ -11962,7 +12413,6 @@ entities: parent: 12 - type: DeviceList devices: - - 26593 - 9303 - 10811 - 5298 @@ -12013,6 +12463,7 @@ entities: - 8916 - 8597 - 8540 + - 27072 - uid: 7342 components: - type: Transform @@ -12074,6 +12525,7 @@ entities: - 7461 - 26319 - 26314 + - 27072 - uid: 8971 components: - type: Transform @@ -12268,11 +12720,11 @@ entities: - type: DeviceList devices: - 11341 - - 9488 - 6735 - 2516 - 2604 - 3702 + - 1537 - uid: 13076 components: - type: Transform @@ -12443,6 +12895,19 @@ entities: - 26327 - 26569 - 8461 + - uid: 22005 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 12 + - type: DeviceList + devices: + - 7529 + - 9321 + - 7229 + - 5316 + - 28375 + - 4938 - uid: 22248 components: - type: Transform @@ -12884,7 +13349,7 @@ entities: parent: 12 - type: DeviceList devices: - - 26949 + - 2501 - 2020 - 26923 - 609 @@ -12936,13 +13401,16 @@ entities: parent: 12 - type: DeviceList devices: + - 28272 + - 4523 + - 23941 - 24083 - 24082 - - 28272 - - 23940 - - 23941 - - 14474 + - 23943 + - 14476 - 14475 + - 26899 + - 14472 - 14471 - uid: 28328 components: @@ -12952,11 +13420,11 @@ entities: - type: DeviceList devices: - 23093 - - 23092 - 28329 - - 14474 - 14475 - - 12055 + - 616 + - 708 + - 5873 - uid: 28330 components: - type: Transform @@ -13302,27 +13770,6 @@ entities: - 19338 - 19339 - 16364 - - uid: 29782 - components: - - type: Transform - pos: -53.5,63.5 - parent: 12 - - type: DeviceList - devices: - - 29397 - - 29396 - - 9513 - - uid: 29783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,71.5 - parent: 12 - - type: DeviceList - devices: - - 29820 - - 29651 - - 29784 - uid: 30349 components: - type: Transform @@ -13484,6 +13931,16 @@ entities: - type: Transform pos: 63.5,-18.5 parent: 12 + - uid: 6282 + components: + - type: Transform + pos: -51.5,-29.5 + parent: 12 + - uid: 7609 + components: + - type: Transform + pos: -59.5,-34.5 + parent: 12 - uid: 8863 components: - type: Transform @@ -13519,6 +13976,11 @@ entities: - type: Transform pos: -4.5,11.5 parent: 12 + - uid: 23715 + components: + - type: Transform + pos: -53.5,52.5 + parent: 12 - uid: 23899 components: - type: Transform @@ -13549,6 +14011,11 @@ entities: - type: Transform pos: 45.5,10.5 parent: 12 + - uid: 30113 + components: + - type: Transform + pos: -39.5,73.5 + parent: 12 - uid: 30705 components: - type: Transform @@ -13559,16 +14026,6 @@ entities: - type: Transform pos: -60.5,-53.5 parent: 12 - - uid: 31447 - components: - - type: Transform - pos: 4.5,-53.5 - parent: 12 - - uid: 31669 - components: - - type: Transform - pos: -60.5,-24.5 - parent: 12 - proto: Airlock entities: - uid: 2309 @@ -13581,12 +14038,6 @@ entities: - type: Transform pos: 8.5,-28.5 parent: 12 - - uid: 12071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,63.5 - parent: 12 - uid: 12345 components: - type: Transform @@ -13605,6 +14056,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,52.5 parent: 12 + - uid: 27239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,62.5 + parent: 12 - proto: AirlockArmoryGlassLocked entities: - uid: 10592 @@ -13972,6 +14429,12 @@ entities: parent: 12 - proto: AirlockEngineeringGlassLocked entities: + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-16.5 + parent: 12 - uid: 1346 components: - type: Transform @@ -13982,12 +14445,6 @@ entities: - type: Transform pos: 30.5,-5.5 parent: 12 - - uid: 5434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 12 - uid: 5435 components: - type: Transform @@ -14019,6 +14476,11 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-8.5 parent: 12 + - uid: 79 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 12 - uid: 494 components: - type: Transform @@ -14030,11 +14492,10 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,46.5 parent: 12 - - uid: 2891 + - uid: 2421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-48.5 + pos: 39.5,0.5 parent: 12 - uid: 3226 components: @@ -14069,11 +14530,6 @@ entities: - type: Transform pos: 23.5,-19.5 parent: 12 - - uid: 5865 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 12 - uid: 5866 components: - type: Transform @@ -14217,17 +14673,22 @@ entities: - type: Transform pos: -37.5,-51.5 parent: 12 + - uid: 28299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-65.5 + parent: 12 - uid: 28552 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 12 - - uid: 29098 + - uid: 29431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 + pos: 5.5,-54.5 parent: 12 - uid: 31074 components: @@ -14273,30 +14734,6 @@ entities: linkedPorts: 25549: - DoorStatus: InputB - - uid: 1537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,13.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 1552: - - DoorStatus: DoorBolt - - uid: 1552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,11.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 1537: - - DoorStatus: DoorBolt - uid: 2246 components: - type: Transform @@ -14308,6 +14745,18 @@ entities: linkedPorts: 25549: - DoorStatus: InputA + - uid: 4629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14474: + - DoorStatus: DoorBolt - uid: 6350 components: - type: Transform @@ -14380,6 +14829,18 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,8.5 parent: 12 + - uid: 28301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-67.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28300: + - DoorStatus: DoorBolt - uid: 31108 components: - type: Transform @@ -14433,20 +14894,25 @@ entities: linkedPorts: 479: - DoorStatus: DoorBolt + - uid: 756 + components: + - type: Transform + pos: 57.5,-48.5 + parent: 12 - uid: 906 components: - type: Transform pos: -28.5,-6.5 parent: 12 - - uid: 6145 + - uid: 6255 components: - type: Transform - pos: 32.5,-41.5 + pos: 12.5,-54.5 parent: 12 - - uid: 8336 + - uid: 6267 components: - type: Transform - pos: -16.5,-66.5 + pos: 31.5,-54.5 parent: 12 - uid: 10296 components: @@ -14504,11 +14970,10 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,71.5 parent: 12 - - uid: 22328 + - uid: 21313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,59.5 + pos: 57.5,-49.5 parent: 12 - uid: 28520 components: @@ -14592,32 +15057,6 @@ entities: linkedPorts: 5024: - DoorStatus: DoorBolt -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 5150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-42.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5151: - - DoorStatus: DoorBolt - - uid: 5151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-45.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5150: - - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 1810 @@ -14712,6 +15151,18 @@ entities: linkedPorts: 25550: - DoorStatus: InputB + - uid: 14474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4629: + - DoorStatus: DoorBolt - uid: 16347 components: - type: Transform @@ -14740,6 +15191,18 @@ entities: linkedPorts: 19020: - DoorStatus: DoorBolt + - uid: 28300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-67.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28301: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 452 @@ -14761,12 +15224,6 @@ entities: - DoorStatus: DoorBolt 478: - DoorStatus: DoorBolt - - uid: 1061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,62.5 - parent: 12 - uid: 2041 components: - type: Transform @@ -14842,18 +15299,24 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,67.5 parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 18560: + - DoorStatus: DoorBolt + - uid: 25678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-42.5 + parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 19847: + 25663: - DoorStatus: DoorBolt - - uid: 22277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,60.5 - parent: 12 - uid: 27232 components: - type: Transform @@ -14984,12 +15447,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,66.5 parent: 12 - - uid: 22322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,57.5 - parent: 12 - uid: 24238 components: - type: Transform @@ -15030,16 +15487,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-4.5 parent: 12 - - uid: 1968 - components: - - type: Transform - pos: 12.5,-54.5 - parent: 12 - - uid: 5500 - components: - - type: Transform - pos: 31.5,-54.5 - parent: 12 - uid: 7491 components: - type: Transform @@ -15074,17 +15521,15 @@ entities: - type: Transform pos: -36.5,13.5 parent: 12 - - uid: 22320 + - uid: 10393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,62.5 + pos: 13.5,-57.5 parent: 12 - - uid: 22321 + - uid: 25330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,60.5 + pos: 30.5,-57.5 parent: 12 - uid: 26130 components: @@ -15160,11 +15605,11 @@ entities: linkedPorts: 530: - DoorStatus: DoorBolt - - uid: 19847 + - uid: 18560 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,65.5 + pos: 52.5,64.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 @@ -15172,12 +15617,24 @@ entities: linkedPorts: 19844: - DoorStatus: DoorBolt -- proto: AirlockExternalShuttleLocked - entities: - - uid: 31396 + - uid: 25663 components: - type: Transform - pos: -16.5,-69.5 + rot: 1.5707963267948966 rad + pos: 53.5,-45.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25678: + - DoorStatus: DoorBolt +- proto: AirlockExternalShuttleLocked + entities: + - uid: 28051 + components: + - type: Transform + pos: -16.5,-70.5 parent: 12 - proto: AirlockFreezerLocked entities: @@ -15464,12 +15921,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,44.5 parent: 12 - - uid: 24218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,60.5 - parent: 12 - uid: 24219 components: - type: Transform @@ -15683,6 +16134,18 @@ entities: parent: 12 - proto: AirlockMaint entities: + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-41.5 + parent: 12 + - uid: 2894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-52.5 + parent: 12 - uid: 2967 components: - type: Transform @@ -15738,17 +16201,28 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-33.5 parent: 12 - - uid: 9663 + - uid: 14196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-33.5 + pos: 34.5,-48.5 parent: 12 - uid: 24134 components: - type: Transform pos: 45.5,46.5 parent: 12 + - uid: 26727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-33.5 + parent: 12 + - uid: 27048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-52.5 + parent: 12 - proto: AirlockMaintAtmoLocked entities: - uid: 5070 @@ -15905,17 +16379,34 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,22.5 parent: 12 + - uid: 4112 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 12 - uid: 5428 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,11.5 parent: 12 - - uid: 6712 + - uid: 5662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-28.5 + rot: 1.5707963267948966 rad + pos: -60.5,-17.5 + parent: 12 + - uid: 6145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-31.5 + parent: 12 + - uid: 6155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-19.5 parent: 12 - uid: 7375 components: @@ -16028,12 +16519,6 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 13002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-20.5 - parent: 12 - uid: 14946 components: - type: Transform @@ -16216,6 +16701,11 @@ entities: - type: Transform pos: -18.5,69.5 parent: 12 + - uid: 27395 + components: + - type: Transform + pos: 53.5,-40.5 + parent: 12 - uid: 27453 components: - type: Transform @@ -16239,17 +16729,39 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 12 + - uid: 28436 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 12 - uid: 28518 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,8.5 parent: 12 - - uid: 29517 + - uid: 29024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,67.5 + rot: 3.141592653589793 rad + pos: -44.5,68.5 + parent: 12 + - type: Door + secondsUntilStateChange: -5764.909 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 29076 + components: + - type: Transform + pos: -31.5,76.5 + parent: 12 + - uid: 29138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,75.5 parent: 12 - uid: 29718 components: @@ -16320,11 +16832,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-63.5 parent: 12 - - uid: 31349 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 12 - uid: 31393 components: - type: Transform @@ -16332,6 +16839,11 @@ entities: parent: 12 - proto: AirlockMaintMedLocked entities: + - uid: 619 + components: + - type: Transform + pos: -16.5,-66.5 + parent: 12 - uid: 2868 components: - type: Transform @@ -16420,13 +16932,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-49.5 parent: 12 -- proto: AirlockMaintSalvageLocked - entities: - - uid: 8044 - components: - - type: Transform - pos: 53.5,-40.5 - parent: 12 - proto: AirlockMaintSecLocked entities: - uid: 18246 @@ -16675,31 +17180,17 @@ entities: parent: 12 - proto: AirlockSalvageGlassLocked entities: - - uid: 7485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-49.5 - parent: 12 - - uid: 7501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-48.5 - parent: 12 - uid: 8034 components: - type: Transform pos: 58.5,-35.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 4 - type: DeviceLinkSource linkedPorts: - 8036: - - DoorStatus: DoorBolt - 8037: - - DoorStatus: DoorBolt + 27073: + - DoorStatus: InputB 8034: - DoorStatus: DoorBolt - uid: 8035 @@ -16708,49 +17199,47 @@ entities: pos: 58.5,-34.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: - 8037: - - DoorStatus: DoorBolt - 8036: - - DoorStatus: DoorBolt + 27073: + - DoorStatus: InputA - uid: 8036 components: - type: Transform pos: 61.5,-34.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: - 8035: - - DoorStatus: DoorBolt + 26946: + - DoorStatus: InputA - uid: 8037 components: - type: Transform pos: 61.5,-35.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: - 8034: - - DoorStatus: DoorBolt - 8035: - - DoorStatus: DoorBolt - - uid: 8038 - components: - - type: Transform - pos: 55.5,-38.5 - parent: 12 - - uid: 8039 - components: - - type: Transform - pos: 56.5,-38.5 - parent: 12 + 26946: + - DoorStatus: InputB - proto: AirlockSalvageLocked entities: + - uid: 771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-38.5 + parent: 12 + - uid: 772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-38.5 + parent: 12 - uid: 2830 components: - type: Transform @@ -16784,6 +17273,12 @@ entities: - type: Transform pos: -50.5,-22.5 parent: 12 + - uid: 11039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,57.5 + parent: 12 - proto: AirlockScienceLocked entities: - uid: 486 @@ -16914,6 +17409,11 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,60.5 parent: 12 + - uid: 27071 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 12 - proto: AirlockServiceGlassLocked entities: - uid: 15803 @@ -17140,6 +17640,14 @@ entities: - type: DeviceNetwork deviceLists: - 28373 + - uid: 2416 + components: + - type: Transform + pos: 38.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1375 - uid: 2604 components: - type: Transform @@ -17224,15 +17732,6 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 4787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2682 - uid: 5011 components: - type: Transform @@ -17268,7 +17767,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 4887 + - 22005 - uid: 7350 components: - type: Transform @@ -17321,6 +17820,15 @@ entities: - type: DeviceNetwork deviceLists: - 8420 + - uid: 8423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-51.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 - uid: 8916 components: - type: Transform @@ -17807,6 +18315,15 @@ entities: - type: DeviceNetwork deviceLists: - 22582 + - uid: 23101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 - uid: 23592 components: - type: Transform @@ -18301,23 +18818,6 @@ entities: - type: DeviceNetwork deviceLists: - 29275 - - uid: 29396 - components: - - type: Transform - pos: -53.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29782 - - uid: 29784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,69.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29783 - uid: 30260 components: - type: Transform @@ -18424,7 +18924,8 @@ entities: - uid: 5894 components: - type: Transform - pos: 29.66415,-23.535322 + rot: -43.98229715025713 rad + pos: 33.353954,-19.804523 parent: 12 - type: GasTank toggleActionEntity: 3128 @@ -18437,7 +18938,8 @@ entities: - uid: 5895 components: - type: Transform - pos: 29.333408,-23.36321 + rot: -43.98229715025713 rad + pos: 33.696545,-19.883226 parent: 12 - type: GasTank toggleActionEntity: 4142 @@ -18465,8 +18967,16 @@ entities: - uid: 28460 components: - type: Transform - pos: 55.478806,-34.59952 + pos: 55.77801,-34.463158 parent: 12 + - type: GasTank + toggleActionEntity: 899 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 899 - uid: 30709 components: - type: Transform @@ -18481,6 +18991,13 @@ entities: actions: !type:Container ents: - 2687 +- proto: AltarConvertMaint + entities: + - uid: 22330 + components: + - type: Transform + pos: -37.5,78.5 + parent: 12 - proto: AltarSpawner entities: - uid: 13340 @@ -18497,13 +19014,20 @@ entities: parent: 12 - proto: AmeController entities: - - uid: 4915 + - uid: 2682 components: - type: Transform pos: 36.5,2.5 parent: 12 - proto: AnomalyScanner entities: + - uid: 9548 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13796 components: - type: Transform @@ -18622,6 +19146,12 @@ entities: - type: Transform pos: -21.5,-48.5 parent: 12 + - uid: 3132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 12 - uid: 3146 components: - type: Transform @@ -18639,8 +19169,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-21.5 parent: 12 - - type: Apc - hasAccess: True - uid: 5600 components: - type: Transform @@ -18657,12 +19185,6 @@ entities: - type: Transform pos: 13.5,-36.5 parent: 12 - - uid: 7207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,4.5 - parent: 12 - uid: 7825 components: - type: Transform @@ -18696,10 +19218,11 @@ entities: - type: Transform pos: 59.5,-27.5 parent: 12 - - uid: 9541 + - uid: 9589 components: - type: Transform - pos: 16.5,13.5 + rot: 3.141592653589793 rad + pos: -47.5,67.5 parent: 12 - uid: 9899 components: @@ -19001,18 +19524,18 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 12 - - uid: 26652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,0.5 - parent: 12 - uid: 26780 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,9.5 parent: 12 + - uid: 27078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,0.5 + parent: 12 - uid: 27295 components: - type: Transform @@ -19043,12 +19566,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,3.5 parent: 12 - - uid: 29647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,68.5 - parent: 12 - uid: 29777 components: - type: Transform @@ -19168,10 +19685,10 @@ entities: parent: 12 - proto: Ash entities: - - uid: 26653 + - uid: 28977 components: - type: Transform - pos: -0.5,19.5 + pos: -55.65416,60.668686 parent: 12 - proto: Ashtray entities: @@ -19205,6 +19722,11 @@ entities: - type: Transform pos: 11.456245,57.051254 parent: 12 + - uid: 28976 + components: + - type: Transform + pos: -54.97468,61.653255 + parent: 12 - proto: AsimovCircuitBoard entities: - uid: 28848 @@ -19255,11 +19777,6 @@ entities: - type: Transform pos: -62.5,-51.5 parent: 12 - - uid: 31034 - components: - - type: Transform - pos: -55.5,-53.5 - parent: 12 - uid: 31035 components: - type: Transform @@ -19275,21 +19792,11 @@ entities: - type: Transform pos: -57.5,-56.5 parent: 12 - - uid: 31038 - components: - - type: Transform - pos: -54.5,-54.5 - parent: 12 - uid: 31039 components: - type: Transform pos: -53.5,-53.5 parent: 12 - - uid: 31040 - components: - - type: Transform - pos: -54.5,-55.5 - parent: 12 - uid: 31043 components: - type: Transform @@ -19452,6 +19959,11 @@ entities: - type: Transform pos: 80.5,-33.5 parent: 12 + - uid: 745 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 12 - uid: 919 components: - type: Transform @@ -19506,16 +20018,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-45.5 parent: 12 - - uid: 4967 - components: - - type: Transform - pos: 31.5,-54.5 - parent: 12 - - uid: 4968 - components: - - type: Transform - pos: 12.5,-54.5 - parent: 12 - uid: 7776 components: - type: Transform @@ -19578,36 +20080,28 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,76.5 parent: 12 - - uid: 12033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,57.5 - parent: 12 - - uid: 12057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,62.5 - parent: 12 - - uid: 12645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,60.5 - parent: 12 - uid: 13558 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,83.5 parent: 12 + - uid: 13836 + components: + - type: Transform + pos: 30.5,-57.5 + parent: 12 - uid: 14183 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-53.5 parent: 12 + - uid: 14527 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 12 - uid: 14697 components: - type: Transform @@ -19650,11 +20144,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,2.5 parent: 12 - - uid: 30198 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 12 - uid: 31633 components: - type: Transform @@ -20401,10 +20890,10 @@ entities: - type: Transform pos: 18.5,-25.5 parent: 12 - - uid: 5542 + - uid: 5620 components: - type: Transform - pos: 44.5,0.5 + pos: 50.5,1.5 parent: 12 - proto: BannerGreen entities: @@ -20488,11 +20977,10 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-2.5 parent: 12 - - uid: 28210 + - uid: 27404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-15.5 + pos: -52.5,-17.5 parent: 12 - uid: 30898 components: @@ -20516,6 +21004,22 @@ entities: - type: Transform pos: -61.5,-57.5 parent: 12 + - uid: 23721 + components: + - type: Transform + pos: -51.5,62.5 + parent: 12 + - uid: 23760 + components: + - type: Transform + pos: -37.5,75.5 + parent: 12 + - uid: 26914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-17.5 + parent: 12 - uid: 30900 components: - type: Transform @@ -20540,10 +21044,10 @@ entities: parent: 12 - proto: BarSignRobustaCafe entities: - - uid: 11378 + - uid: 27403 components: - type: Transform - pos: -54.5,-15.5 + pos: -55.5,-17.5 parent: 12 - proto: BaseBallBat entities: @@ -20657,11 +21161,6 @@ entities: - type: Transform pos: 27.5,-22.5 parent: 12 - - uid: 8725 - components: - - type: Transform - pos: 52.5,-38.5 - parent: 12 - uid: 8726 components: - type: Transform @@ -20792,6 +21291,11 @@ entities: - type: Transform pos: 3.5,66.5 parent: 12 + - uid: 27076 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 12 - uid: 28264 components: - type: Transform @@ -20861,6 +21365,11 @@ entities: parent: 12 - proto: BedsheetGreen entities: + - uid: 2384 + components: + - type: Transform + pos: -44.5,63.5 + parent: 12 - uid: 21711 components: - type: Transform @@ -20955,18 +21464,13 @@ entities: - type: Transform pos: -47.5,63.5 parent: 12 - - uid: 19377 - components: - - type: Transform - pos: -44.5,63.5 - parent: 12 - - uid: 19378 +- proto: BedsheetPurple + entities: + - uid: 2467 components: - type: Transform pos: -41.5,63.5 parent: 12 -- proto: BedsheetPurple - entities: - uid: 12283 components: - type: Transform @@ -20994,6 +21498,14 @@ entities: - type: Transform pos: -49.5,-14.5 parent: 12 +- proto: BedsheetUSA + entities: + - uid: 9223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 12 - proto: BenchBlueComfy entities: - uid: 12706 @@ -21706,6 +22218,16 @@ entities: canCollide: False - proto: Bookshelf entities: + - uid: 4531 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 12 + - uid: 28386 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 12 - uid: 31819 components: - type: Transform @@ -21793,6 +22315,11 @@ entities: - 31832 - proto: BookshelfFilled entities: + - uid: 2405 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 12 - uid: 3026 components: - type: Transform @@ -21803,6 +22330,21 @@ entities: - type: Transform pos: 45.5,41.5 parent: 12 + - uid: 4168 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 12 + - uid: 5151 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 12 + - uid: 5372 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 12 - uid: 19636 components: - type: Transform @@ -21942,6 +22484,12 @@ entities: parent: 12 - proto: BoozeDispenser entities: + - uid: 2426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-16.5 + parent: 12 - uid: 15088 components: - type: Transform @@ -21953,12 +22501,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,48.5 parent: 12 - - uid: 28192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-13.5 - parent: 12 - proto: BorgCharger entities: - uid: 1777 @@ -21981,11 +22523,6 @@ entities: - type: Transform pos: -8.5,-35.5 parent: 12 - - uid: 5253 - components: - - type: Transform - pos: 33.5,-15.5 - parent: 12 - uid: 7509 components: - type: Transform @@ -22052,6 +22589,12 @@ entities: - 0 - 0 - 0 + - uid: 26715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 12 - uid: 27093 components: - type: Transform @@ -22095,7 +22638,7 @@ entities: - uid: 8797 components: - type: Transform - pos: 55.46302,-32.505604 + pos: 55.495014,-33.790596 parent: 12 - proto: BorgModuleRadiationDetection entities: @@ -22356,6 +22899,14 @@ entities: - type: Transform pos: -29.430593,58.567467 parent: 12 +- proto: BoxInflatable + entities: + - uid: 26848 + components: + - type: Transform + rot: -43.98229715025713 rad + pos: 33.488213,-20.573042 + parent: 12 - proto: BoxingBell entities: - uid: 12634 @@ -22588,7 +23139,7 @@ entities: - uid: 4212 components: - type: Transform - pos: 5.6581864,-60.013676 + pos: 4.33757,-60.111046 parent: 12 - uid: 13623 components: @@ -22620,6 +23171,22 @@ entities: - type: Transform pos: 57.314083,57.13435 parent: 12 +- proto: BulletFoam + entities: + - uid: 6284 + components: + - type: Transform + parent: 28254 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6285 + components: + - type: Transform + parent: 28254 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ButchCleaver entities: - uid: 15386 @@ -22700,6 +23267,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 12 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 12 - uid: 495 components: - type: Transform @@ -22736,6 +23309,12 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,29.5 parent: 12 + - uid: 14211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 12 - uid: 15861 components: - type: Transform @@ -22793,6 +23372,12 @@ entities: - type: Transform pos: 14.5,6.5 parent: 12 + - uid: 29187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,58.5 + parent: 12 - uid: 29367 components: - type: Transform @@ -22831,11 +23416,6 @@ entities: - type: Transform pos: 51.5,-12.5 parent: 12 - - uid: 68 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 12 - uid: 72 components: - type: Transform @@ -22851,10 +23431,10 @@ entities: - type: Transform pos: -10.5,4.5 parent: 12 - - uid: 79 + - uid: 97 components: - type: Transform - pos: 34.5,-32.5 + pos: 14.5,12.5 parent: 12 - uid: 98 components: @@ -22886,16 +23466,16 @@ entities: - type: Transform pos: 4.5,20.5 parent: 12 - - uid: 190 - components: - - type: Transform - pos: 37.5,-31.5 - parent: 12 - uid: 194 components: - type: Transform pos: 14.5,-3.5 parent: 12 + - uid: 203 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 12 - uid: 253 components: - type: Transform @@ -22906,21 +23486,11 @@ entities: - type: Transform pos: 1.5,68.5 parent: 12 - - uid: 271 - components: - - type: Transform - pos: 34.5,-31.5 - parent: 12 - uid: 272 components: - type: Transform pos: 40.5,-13.5 parent: 12 - - uid: 273 - components: - - type: Transform - pos: 36.5,-31.5 - parent: 12 - uid: 317 components: - type: Transform @@ -23036,6 +23606,16 @@ entities: - type: Transform pos: -43.5,1.5 parent: 12 + - uid: 707 + components: + - type: Transform + pos: 30.5,-57.5 + parent: 12 + - uid: 746 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 12 - uid: 764 components: - type: Transform @@ -23066,6 +23646,11 @@ entities: - type: Transform pos: -30.5,-25.5 parent: 12 + - uid: 1054 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 12 - uid: 1074 components: - type: Transform @@ -23086,16 +23671,31 @@ entities: - type: Transform pos: 24.5,12.5 parent: 12 + - uid: 1165 + components: + - type: Transform + pos: 12.5,-56.5 + parent: 12 - uid: 1267 components: - type: Transform pos: 3.5,20.5 parent: 12 + - uid: 1284 + components: + - type: Transform + pos: -55.5,-16.5 + parent: 12 - uid: 1315 components: - type: Transform pos: 45.5,-0.5 parent: 12 + - uid: 1316 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 12 - uid: 1368 components: - type: Transform @@ -23516,11 +24116,6 @@ entities: - type: Transform pos: 54.5,-5.5 parent: 12 - - uid: 1505 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 12 - uid: 1522 components: - type: Transform @@ -24196,6 +24791,11 @@ entities: - type: Transform pos: -22.5,-29.5 parent: 12 + - uid: 1755 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 12 - uid: 1783 components: - type: Transform @@ -24261,6 +24861,11 @@ entities: - type: Transform pos: 17.5,17.5 parent: 12 + - uid: 2120 + components: + - type: Transform + pos: 48.5,58.5 + parent: 12 - uid: 2136 components: - type: Transform @@ -24506,11 +25111,101 @@ entities: - type: Transform pos: 30.5,-12.5 parent: 12 + - uid: 2378 + components: + - type: Transform + pos: 33.5,-43.5 + parent: 12 + - uid: 2379 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 12 + - uid: 2380 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 12 + - uid: 2385 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 12 + - uid: 2386 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 12 + - uid: 2388 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 12 + - uid: 2402 + components: + - type: Transform + pos: 33.5,-48.5 + parent: 12 + - uid: 2403 + components: + - type: Transform + pos: 33.5,-47.5 + parent: 12 + - uid: 2404 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 12 + - uid: 2409 + components: + - type: Transform + pos: -52.5,-16.5 + parent: 12 + - uid: 2414 + components: + - type: Transform + pos: 38.5,2.5 + parent: 12 + - uid: 2415 + components: + - type: Transform + pos: 39.5,2.5 + parent: 12 + - uid: 2417 + components: + - type: Transform + pos: 36.5,2.5 + parent: 12 + - uid: 2425 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 12 + - uid: 2427 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 12 + - uid: 2428 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 12 + - uid: 2429 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 12 - uid: 2464 components: - type: Transform pos: 13.5,12.5 parent: 12 + - uid: 2491 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 12 - uid: 2509 components: - type: Transform @@ -24566,20 +25261,15 @@ entities: - type: Transform pos: 1.5,20.5 parent: 12 - - uid: 2670 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 12 - uid: 2671 components: - type: Transform - pos: 40.5,-1.5 + pos: -54.5,-16.5 parent: 12 - - uid: 2678 + - uid: 2681 components: - type: Transform - pos: 40.5,1.5 + pos: 38.5,1.5 parent: 12 - uid: 2705 components: @@ -24631,11 +25321,6 @@ entities: - type: Transform pos: 57.5,53.5 parent: 12 - - uid: 2862 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - uid: 2881 components: - type: Transform @@ -24766,6 +25451,11 @@ entities: - type: Transform pos: 11.5,-34.5 parent: 12 + - uid: 3198 + components: + - type: Transform + pos: 43.5,-39.5 + parent: 12 - uid: 3222 components: - type: Transform @@ -25784,7 +26474,17 @@ entities: - uid: 3962 components: - type: Transform - pos: 40.5,3.5 + pos: -39.5,-14.5 + parent: 12 + - uid: 3974 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 12 + - uid: 3977 + components: + - type: Transform + pos: 43.5,-37.5 parent: 12 - uid: 3978 components: @@ -25811,6 +26511,16 @@ entities: - type: Transform pos: 7.5,-3.5 parent: 12 + - uid: 4103 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 12 + - uid: 4106 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 12 - uid: 4119 components: - type: Transform @@ -25851,6 +26561,11 @@ entities: - type: Transform pos: 7.5,-51.5 parent: 12 + - uid: 4188 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 12 - uid: 4190 components: - type: Transform @@ -26251,6 +26966,11 @@ entities: - type: Transform pos: 11.5,1.5 parent: 12 + - uid: 4800 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 12 - uid: 4857 components: - type: Transform @@ -26271,6 +26991,11 @@ entities: - type: Transform pos: 63.5,6.5 parent: 12 + - uid: 4968 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 12 - uid: 4974 components: - type: Transform @@ -26296,6 +27021,11 @@ entities: - type: Transform pos: 22.5,-11.5 parent: 12 + - uid: 5023 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 12 - uid: 5029 components: - type: Transform @@ -26316,6 +27046,11 @@ entities: - type: Transform pos: -28.5,8.5 parent: 12 + - uid: 5067 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 12 - uid: 5080 components: - type: Transform @@ -26341,11 +27076,21 @@ entities: - type: Transform pos: 29.5,2.5 parent: 12 + - uid: 5097 + components: + - type: Transform + pos: 43.5,-41.5 + parent: 12 - uid: 5118 components: - type: Transform pos: 4.5,-19.5 parent: 12 + - uid: 5123 + components: + - type: Transform + pos: 42.5,-41.5 + parent: 12 - uid: 5133 components: - type: Transform @@ -26406,10 +27151,20 @@ entities: - type: Transform pos: 21.5,2.5 parent: 12 - - uid: 5249 + - uid: 5250 components: - type: Transform - pos: 42.5,-39.5 + pos: -39.5,-15.5 + parent: 12 + - uid: 5253 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 12 + - uid: 5255 + components: + - type: Transform + pos: 37.5,-31.5 parent: 12 - uid: 5322 components: @@ -26426,11 +27181,6 @@ entities: - type: Transform pos: 27.5,-11.5 parent: 12 - - uid: 5404 - components: - - type: Transform - pos: 37.5,2.5 - parent: 12 - uid: 5429 components: - type: Transform @@ -26439,7 +27189,7 @@ entities: - uid: 5481 components: - type: Transform - pos: 34.5,0.5 + pos: 43.5,-38.5 parent: 12 - uid: 5482 components: @@ -26451,21 +27201,11 @@ entities: - type: Transform pos: 1.5,14.5 parent: 12 - - uid: 5503 - components: - - type: Transform - pos: 36.5,4.5 - parent: 12 - uid: 5512 components: - type: Transform pos: 1.5,15.5 parent: 12 - - uid: 5535 - components: - - type: Transform - pos: 40.5,0.5 - parent: 12 - uid: 5544 components: - type: Transform @@ -26606,11 +27346,6 @@ entities: - type: Transform pos: 36.5,-1.5 parent: 12 - - uid: 5662 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 12 - uid: 5669 components: - type: Transform @@ -26791,16 +27526,6 @@ entities: - type: Transform pos: 14.5,-16.5 parent: 12 - - uid: 5725 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 12 - - uid: 5726 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 12 - uid: 5727 components: - type: Transform @@ -27166,6 +27891,11 @@ entities: - type: Transform pos: 21.5,5.5 parent: 12 + - uid: 5834 + components: + - type: Transform + pos: -53.5,68.5 + parent: 12 - uid: 5837 components: - type: Transform @@ -27201,25 +27931,10 @@ entities: - type: Transform pos: 15.5,-3.5 parent: 12 - - uid: 5927 + - uid: 5914 components: - type: Transform - pos: 38.5,4.5 - parent: 12 - - uid: 5985 - components: - - type: Transform - pos: 39.5,4.5 - parent: 12 - - uid: 6020 - components: - - type: Transform - pos: 37.5,1.5 - parent: 12 - - uid: 6029 - components: - - type: Transform - pos: 37.5,0.5 + pos: 14.5,13.5 parent: 12 - uid: 6033 components: @@ -27316,41 +28031,46 @@ entities: - type: Transform pos: 12.5,-33.5 parent: 12 + - uid: 6192 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 12 + - uid: 6193 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 12 + - uid: 6195 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 12 + - uid: 6196 + components: + - type: Transform + pos: 37.5,2.5 + parent: 12 + - uid: 6249 + components: + - type: Transform + pos: -62.5,-28.5 + parent: 12 - uid: 6261 components: - type: Transform pos: -1.5,22.5 parent: 12 - - uid: 6267 + - uid: 6305 components: - type: Transform - pos: 37.5,4.5 - parent: 12 - - uid: 6287 - components: - - type: Transform - pos: 13.5,13.5 + pos: 40.5,-0.5 parent: 12 - uid: 6703 components: - type: Transform pos: 14.5,-37.5 parent: 12 - - uid: 6708 - components: - - type: Transform - pos: 35.5,0.5 - parent: 12 - - uid: 6732 - components: - - type: Transform - pos: 13.5,14.5 - parent: 12 - - uid: 6739 - components: - - type: Transform - pos: 14.5,14.5 - parent: 12 - uid: 6778 components: - type: Transform @@ -27686,11 +28406,6 @@ entities: - type: Transform pos: 32.5,-41.5 parent: 12 - - uid: 6970 - components: - - type: Transform - pos: 33.5,-41.5 - parent: 12 - uid: 6971 components: - type: Transform @@ -27711,6 +28426,11 @@ entities: - type: Transform pos: 32.5,-38.5 parent: 12 + - uid: 7034 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 12 - uid: 7153 components: - type: Transform @@ -27736,11 +28456,6 @@ entities: - type: Transform pos: 21.5,0.5 parent: 12 - - uid: 7223 - components: - - type: Transform - pos: 37.5,3.5 - parent: 12 - uid: 7233 components: - type: Transform @@ -27796,6 +28511,21 @@ entities: - type: Transform pos: -8.5,-6.5 parent: 12 + - uid: 7492 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 12 + - uid: 7500 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 12 + - uid: 7501 + components: + - type: Transform + pos: 38.5,-41.5 + parent: 12 - uid: 7516 components: - type: Transform @@ -28191,11 +28921,6 @@ entities: - type: Transform pos: 51.5,-37.5 parent: 12 - - uid: 8131 - components: - - type: Transform - pos: 51.5,-38.5 - parent: 12 - uid: 8132 components: - type: Transform @@ -29046,6 +29771,21 @@ entities: - type: Transform pos: 43.5,-9.5 parent: 12 + - uid: 8346 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 12 + - uid: 8441 + components: + - type: Transform + pos: 30.5,-56.5 + parent: 12 + - uid: 8447 + components: + - type: Transform + pos: 15.5,13.5 + parent: 12 - uid: 8463 components: - type: Transform @@ -29056,6 +29796,11 @@ entities: - type: Transform pos: -11.5,-8.5 parent: 12 + - uid: 8500 + components: + - type: Transform + pos: 13.5,-56.5 + parent: 12 - uid: 8533 components: - type: Transform @@ -29136,6 +29881,11 @@ entities: - type: Transform pos: 85.5,-33.5 parent: 12 + - uid: 8836 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 12 - uid: 8864 components: - type: Transform @@ -29161,11 +29911,6 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 12 - - uid: 8979 - components: - - type: Transform - pos: 33.5,0.5 - parent: 12 - uid: 8995 components: - type: Transform @@ -29281,6 +30026,11 @@ entities: - type: Transform pos: 46.5,-39.5 parent: 12 + - uid: 9138 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 12 - uid: 9147 components: - type: Transform @@ -29381,11 +30131,6 @@ entities: - type: Transform pos: 42.5,-34.5 parent: 12 - - uid: 9167 - components: - - type: Transform - pos: 42.5,-35.5 - parent: 12 - uid: 9170 components: - type: Transform @@ -29396,11 +30141,6 @@ entities: - type: Transform pos: 34.5,-34.5 parent: 12 - - uid: 9178 - components: - - type: Transform - pos: 34.5,-33.5 - parent: 12 - uid: 9179 components: - type: Transform @@ -29481,11 +30221,6 @@ entities: - type: Transform pos: 41.5,-38.5 parent: 12 - - uid: 9200 - components: - - type: Transform - pos: 42.5,-38.5 - parent: 12 - uid: 9201 components: - type: Transform @@ -29541,6 +30276,11 @@ entities: - type: Transform pos: 36.5,-37.5 parent: 12 + - uid: 9227 + components: + - type: Transform + pos: -61.5,-29.5 + parent: 12 - uid: 9294 components: - type: Transform @@ -29596,6 +30336,16 @@ entities: - type: Transform pos: 22.5,5.5 parent: 12 + - uid: 9525 + components: + - type: Transform + pos: -47.5,68.5 + parent: 12 + - uid: 9531 + components: + - type: Transform + pos: -48.5,68.5 + parent: 12 - uid: 9536 components: - type: Transform @@ -29636,6 +30386,11 @@ entities: - type: Transform pos: 11.5,23.5 parent: 12 + - uid: 9624 + components: + - type: Transform + pos: -47.5,67.5 + parent: 12 - uid: 9635 components: - type: Transform @@ -29851,6 +30606,11 @@ entities: - type: Transform pos: -23.5,-10.5 parent: 12 + - uid: 10166 + components: + - type: Transform + pos: -59.5,-29.5 + parent: 12 - uid: 10328 components: - type: Transform @@ -30111,11 +30871,6 @@ entities: - type: Transform pos: 11.5,12.5 parent: 12 - - uid: 11047 - components: - - type: Transform - pos: 15.5,14.5 - parent: 12 - uid: 11129 components: - type: Transform @@ -30201,11 +30956,6 @@ entities: - type: Transform pos: 9.5,20.5 parent: 12 - - uid: 11366 - components: - - type: Transform - pos: -53.5,61.5 - parent: 12 - uid: 11367 components: - type: Transform @@ -30236,11 +30986,6 @@ entities: - type: Transform pos: -35.5,-58.5 parent: 12 - - uid: 11400 - components: - - type: Transform - pos: -52.5,61.5 - parent: 12 - uid: 11411 components: - type: Transform @@ -30261,6 +31006,11 @@ entities: - type: Transform pos: 31.5,30.5 parent: 12 + - uid: 11646 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 12 - uid: 11980 components: - type: Transform @@ -30901,6 +31651,11 @@ entities: - type: Transform pos: 31.5,33.5 parent: 12 + - uid: 12933 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 12 - uid: 12934 components: - type: Transform @@ -34376,11 +35131,6 @@ entities: - type: Transform pos: 16.5,12.5 parent: 12 - - uid: 16339 - components: - - type: Transform - pos: 15.5,12.5 - parent: 12 - uid: 16344 components: - type: Transform @@ -34391,6 +35141,11 @@ entities: - type: Transform pos: 11.5,21.5 parent: 12 + - uid: 16349 + components: + - type: Transform + pos: 16.5,11.5 + parent: 12 - uid: 16351 components: - type: Transform @@ -35256,6 +36011,21 @@ entities: - type: Transform pos: 23.5,4.5 parent: 12 + - uid: 17920 + components: + - type: Transform + pos: -54.5,60.5 + parent: 12 + - uid: 17921 + components: + - type: Transform + pos: -54.5,59.5 + parent: 12 + - uid: 17922 + components: + - type: Transform + pos: -54.5,58.5 + parent: 12 - uid: 17934 components: - type: Transform @@ -36126,11 +36896,6 @@ entities: - type: Transform pos: 50.5,63.5 parent: 12 - - uid: 18582 - components: - - type: Transform - pos: 53.5,63.5 - parent: 12 - uid: 18589 components: - type: Transform @@ -36151,16 +36916,6 @@ entities: - type: Transform pos: 49.5,63.5 parent: 12 - - uid: 18642 - components: - - type: Transform - pos: 49.5,60.5 - parent: 12 - - uid: 18643 - components: - - type: Transform - pos: 48.5,60.5 - parent: 12 - uid: 18741 components: - type: Transform @@ -36371,16 +37126,36 @@ entities: - type: Transform pos: -45.5,22.5 parent: 12 + - uid: 19179 + components: + - type: Transform + pos: -54.5,57.5 + parent: 12 - uid: 19294 components: - type: Transform pos: 57.5,8.5 parent: 12 + - uid: 19377 + components: + - type: Transform + pos: -54.5,56.5 + parent: 12 - uid: 19556 components: - type: Transform pos: -0.5,-15.5 parent: 12 + - uid: 19560 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 12 + - uid: 19561 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 12 - uid: 19643 components: - type: Transform @@ -36426,11 +37201,6 @@ entities: - type: Transform pos: 52.5,64.5 parent: 12 - - uid: 19861 - components: - - type: Transform - pos: 48.5,61.5 - parent: 12 - uid: 19885 components: - type: Transform @@ -36446,10 +37216,15 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 12 - - uid: 20552 + - uid: 20523 components: - type: Transform - pos: 36.5,0.5 + pos: -51.5,75.5 + parent: 12 + - uid: 20527 + components: + - type: Transform + pos: -50.5,75.5 parent: 12 - uid: 20570 components: @@ -38116,6 +38891,21 @@ entities: - type: Transform pos: -24.5,22.5 parent: 12 + - uid: 21696 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 12 + - uid: 21760 + components: + - type: Transform + pos: 37.5,-41.5 + parent: 12 + - uid: 21917 + components: + - type: Transform + pos: 39.5,-41.5 + parent: 12 - uid: 21920 components: - type: Transform @@ -38146,16 +38936,26 @@ entities: - type: Transform pos: -9.5,-1.5 parent: 12 + - uid: 22026 + components: + - type: Transform + pos: -49.5,75.5 + parent: 12 + - uid: 22029 + components: + - type: Transform + pos: -48.5,75.5 + parent: 12 + - uid: 22031 + components: + - type: Transform + pos: -47.5,75.5 + parent: 12 - uid: 22058 components: - type: Transform pos: -23.5,54.5 parent: 12 - - uid: 22059 - components: - - type: Transform - pos: -23.5,53.5 - parent: 12 - uid: 22060 components: - type: Transform @@ -38166,6 +38966,11 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 + - uid: 22160 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 12 - uid: 22217 components: - type: Transform @@ -38276,11 +39081,6 @@ entities: - type: Transform pos: 42.5,43.5 parent: 12 - - uid: 24196 - components: - - type: Transform - pos: -54.5,61.5 - parent: 12 - uid: 24202 components: - type: Transform @@ -38291,25 +39091,20 @@ entities: - type: Transform pos: 46.5,-5.5 parent: 12 - - uid: 24255 + - uid: 24234 components: - type: Transform - pos: -55.5,61.5 - parent: 12 - - uid: 24256 - components: - - type: Transform - pos: -56.5,61.5 + pos: 31.5,-56.5 parent: 12 - uid: 24295 components: - type: Transform pos: -24.5,-60.5 parent: 12 - - uid: 24300 + - uid: 24325 components: - type: Transform - pos: -52.5,60.5 + pos: 13.5,-57.5 parent: 12 - uid: 24332 components: @@ -38321,36 +39116,26 @@ entities: - type: Transform pos: -28.5,10.5 parent: 12 - - uid: 24340 - components: - - type: Transform - pos: -52.5,59.5 - parent: 12 - uid: 24455 components: - type: Transform pos: 45.5,-5.5 parent: 12 - - uid: 24456 - components: - - type: Transform - pos: -52.5,58.5 - parent: 12 - uid: 24469 components: - type: Transform pos: 48.5,-5.5 parent: 12 + - uid: 24496 + components: + - type: Transform + pos: 12.5,-55.5 + parent: 12 - uid: 24640 components: - type: Transform pos: 30.5,18.5 parent: 12 - - uid: 24642 - components: - - type: Transform - pos: -52.5,57.5 - parent: 12 - uid: 24651 components: - type: Transform @@ -39401,6 +40186,11 @@ entities: - type: Transform pos: 65.5,44.5 parent: 12 + - uid: 25136 + components: + - type: Transform + pos: 12.5,-54.5 + parent: 12 - uid: 25137 components: - type: Transform @@ -40076,11 +40866,6 @@ entities: - type: Transform pos: 30.5,4.5 parent: 12 - - uid: 25465 - components: - - type: Transform - pos: 33.5,4.5 - parent: 12 - uid: 25483 components: - type: Transform @@ -40091,6 +40876,11 @@ entities: - type: Transform pos: -23.5,-12.5 parent: 12 + - uid: 25532 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 12 - uid: 25568 components: - type: Transform @@ -40171,11 +40961,21 @@ entities: - type: Transform pos: -52.5,-39.5 parent: 12 + - uid: 26242 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 12 - uid: 26243 components: - type: Transform pos: -53.5,-38.5 parent: 12 + - uid: 26250 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 12 - uid: 26295 components: - type: Transform @@ -40256,15 +41056,10 @@ entities: - type: Transform pos: 59.5,-48.5 parent: 12 - - uid: 26425 + - uid: 26415 components: - type: Transform - pos: 1.5,-21.5 - parent: 12 - - uid: 26434 - components: - - type: Transform - pos: 51.5,0.5 + pos: -60.5,-25.5 parent: 12 - uid: 26444 components: @@ -40331,16 +41126,6 @@ entities: - type: Transform pos: 26.5,11.5 parent: 12 - - uid: 26502 - components: - - type: Transform - pos: 35.5,4.5 - parent: 12 - - uid: 26503 - components: - - type: Transform - pos: 34.5,4.5 - parent: 12 - uid: 26505 components: - type: Transform @@ -40376,21 +41161,6 @@ entities: - type: Transform pos: 15.5,7.5 parent: 12 - - uid: 26589 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 12 - - uid: 26599 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 12 - - uid: 26600 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 12 - uid: 26615 components: - type: Transform @@ -40406,6 +41176,16 @@ entities: - type: Transform pos: 26.5,7.5 parent: 12 + - uid: 26750 + components: + - type: Transform + pos: 48.5,59.5 + parent: 12 + - uid: 26751 + components: + - type: Transform + pos: 48.5,60.5 + parent: 12 - uid: 26766 components: - type: Transform @@ -40461,6 +41241,11 @@ entities: - type: Transform pos: 28.5,10.5 parent: 12 + - uid: 26803 + components: + - type: Transform + pos: 48.5,57.5 + parent: 12 - uid: 26812 components: - type: Transform @@ -40526,6 +41311,66 @@ entities: - type: Transform pos: 65.5,-2.5 parent: 12 + - uid: 26875 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 12 + - uid: 26876 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 12 + - uid: 26877 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 12 + - uid: 26878 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 12 + - uid: 26879 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 12 + - uid: 26880 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 12 + - uid: 26881 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 12 + - uid: 26882 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 12 + - uid: 26886 + components: + - type: Transform + pos: 57.5,6.5 + parent: 12 + - uid: 26904 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 12 + - uid: 26905 + components: + - type: Transform + pos: -60.5,-24.5 + parent: 12 + - uid: 26915 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 12 - uid: 26922 components: - type: Transform @@ -40596,6 +41441,16 @@ entities: - type: Transform pos: 65.5,-1.5 parent: 12 + - uid: 26951 + components: + - type: Transform + pos: 41.5,-41.5 + parent: 12 + - uid: 26952 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 12 - uid: 26957 components: - type: Transform @@ -40641,11 +41496,41 @@ entities: - type: Transform pos: 58.5,-0.5 parent: 12 + - uid: 26980 + components: + - type: Transform + pos: -19.5,-67.5 + parent: 12 + - uid: 26997 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 12 + - uid: 27030 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 12 + - uid: 27038 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 12 + - uid: 27045 + components: + - type: Transform + pos: 38.5,0.5 + parent: 12 - uid: 27046 components: - type: Transform pos: 9.5,31.5 parent: 12 + - uid: 27100 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 12 - uid: 27109 components: - type: Transform @@ -40666,6 +41551,16 @@ entities: - type: Transform pos: 48.5,-7.5 parent: 12 + - uid: 27209 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 12 + - uid: 27241 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 12 - uid: 27257 components: - type: Transform @@ -40716,6 +41611,21 @@ entities: - type: Transform pos: 73.5,50.5 parent: 12 + - uid: 27382 + components: + - type: Transform + pos: -60.5,-26.5 + parent: 12 + - uid: 27392 + components: + - type: Transform + pos: -60.5,-22.5 + parent: 12 + - uid: 27393 + components: + - type: Transform + pos: -60.5,-23.5 + parent: 12 - uid: 27417 components: - type: Transform @@ -40836,6 +41746,11 @@ entities: - type: Transform pos: -51.5,-16.5 parent: 12 + - uid: 27446 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 12 - uid: 27512 components: - type: Transform @@ -40846,6 +41761,16 @@ entities: - type: Transform pos: -28.5,-0.5 parent: 12 + - uid: 27712 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 12 + - uid: 27721 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 12 - uid: 27766 components: - type: Transform @@ -41066,31 +41991,6 @@ entities: - type: Transform pos: -58.5,-28.5 parent: 12 - - uid: 27811 - components: - - type: Transform - pos: -58.5,-26.5 - parent: 12 - - uid: 27812 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 12 - - uid: 27813 - components: - - type: Transform - pos: -58.5,-24.5 - parent: 12 - - uid: 27814 - components: - - type: Transform - pos: -58.5,-23.5 - parent: 12 - - uid: 27815 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 12 - uid: 27816 components: - type: Transform @@ -41116,36 +42016,6 @@ entities: - type: Transform pos: -58.5,-18.5 parent: 12 - - uid: 27821 - components: - - type: Transform - pos: -58.5,-17.5 - parent: 12 - - uid: 27822 - components: - - type: Transform - pos: -57.5,-17.5 - parent: 12 - - uid: 27823 - components: - - type: Transform - pos: -57.5,-16.5 - parent: 12 - - uid: 27824 - components: - - type: Transform - pos: -56.5,-16.5 - parent: 12 - - uid: 27825 - components: - - type: Transform - pos: -55.5,-16.5 - parent: 12 - - uid: 27826 - components: - - type: Transform - pos: -54.5,-16.5 - parent: 12 - uid: 27848 components: - type: Transform @@ -41166,6 +42036,31 @@ entities: - type: Transform pos: -26.5,62.5 parent: 12 + - uid: 28071 + components: + - type: Transform + pos: -50.5,68.5 + parent: 12 + - uid: 28075 + components: + - type: Transform + pos: -49.5,68.5 + parent: 12 + - uid: 28117 + components: + - type: Transform + pos: -53.5,71.5 + parent: 12 + - uid: 28122 + components: + - type: Transform + pos: -53.5,73.5 + parent: 12 + - uid: 28138 + components: + - type: Transform + pos: -53.5,72.5 + parent: 12 - uid: 28186 components: - type: Transform @@ -41181,11 +42076,21 @@ entities: - type: Transform pos: -52.5,-12.5 parent: 12 + - uid: 28196 + components: + - type: Transform + pos: -18.5,-65.5 + parent: 12 - uid: 28197 components: - type: Transform pos: -52.5,-13.5 parent: 12 + - uid: 28198 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 12 - uid: 28206 components: - type: Transform @@ -41221,35 +42126,15 @@ entities: - type: Transform pos: -27.5,-14.5 parent: 12 - - uid: 28298 + - uid: 28291 components: - type: Transform - pos: -52.5,-18.5 + pos: -21.5,-67.5 parent: 12 - - uid: 28299 + - uid: 28297 components: - type: Transform - pos: -52.5,-17.5 - parent: 12 - - uid: 28300 - components: - - type: Transform - pos: -51.5,-18.5 - parent: 12 - - uid: 28301 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 12 - - uid: 28302 - components: - - type: Transform - pos: -50.5,-18.5 - parent: 12 - - uid: 28303 - components: - - type: Transform - pos: -49.5,-19.5 + pos: -22.5,-67.5 parent: 12 - uid: 28304 components: @@ -41261,26 +42146,16 @@ entities: - type: Transform pos: -45.5,-20.5 parent: 12 - - uid: 28306 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 12 - - uid: 28307 - components: - - type: Transform - pos: -38.5,-18.5 - parent: 12 - - uid: 28308 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 12 - uid: 28313 components: - type: Transform pos: -29.5,-0.5 parent: 12 + - uid: 28327 + components: + - type: Transform + pos: 33.5,-49.5 + parent: 12 - uid: 28352 components: - type: Transform @@ -41346,6 +42221,36 @@ entities: - type: Transform pos: -28.5,-15.5 parent: 12 + - uid: 28418 + components: + - type: Transform + pos: 33.5,-50.5 + parent: 12 + - uid: 28435 + components: + - type: Transform + pos: 33.5,-51.5 + parent: 12 + - uid: 28438 + components: + - type: Transform + pos: 33.5,-52.5 + parent: 12 + - uid: 28439 + components: + - type: Transform + pos: 33.5,-53.5 + parent: 12 + - uid: 28442 + components: + - type: Transform + pos: 33.5,-54.5 + parent: 12 + - uid: 28443 + components: + - type: Transform + pos: 33.5,-55.5 + parent: 12 - uid: 28457 components: - type: Transform @@ -41356,6 +42261,11 @@ entities: - type: Transform pos: -40.5,30.5 parent: 12 + - uid: 28464 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 12 - uid: 28475 components: - type: Transform @@ -41446,6 +42356,16 @@ entities: - type: Transform pos: 1.5,-22.5 parent: 12 + - uid: 28493 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 12 + - uid: 28494 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 12 - uid: 28495 components: - type: Transform @@ -41521,16 +42441,56 @@ entities: - type: Transform pos: -5.5,9.5 parent: 12 + - uid: 28522 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 12 + - uid: 28533 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 12 + - uid: 28534 + components: + - type: Transform + pos: 9.5,-56.5 + parent: 12 + - uid: 28535 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 12 + - uid: 28553 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 12 - uid: 28556 components: - type: Transform pos: 31.5,15.5 parent: 12 + - uid: 28558 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 12 + - uid: 28613 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 12 - uid: 28630 components: - type: Transform pos: 32.5,19.5 parent: 12 + - uid: 28632 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 12 - uid: 28656 components: - type: Transform @@ -41606,6 +42566,21 @@ entities: - type: Transform pos: -40.5,27.5 parent: 12 + - uid: 28801 + components: + - type: Transform + pos: 34.5,-48.5 + parent: 12 + - uid: 28804 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 12 + - uid: 28807 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 12 - uid: 28866 components: - type: Transform @@ -41686,11 +42661,6 @@ entities: - type: Transform pos: 55.5,5.5 parent: 12 - - uid: 28890 - components: - - type: Transform - pos: 58.5,7.5 - parent: 12 - uid: 28908 components: - type: Transform @@ -41851,11 +42821,66 @@ entities: - type: Transform pos: 5.5,-11.5 parent: 12 + - uid: 28978 + components: + - type: Transform + pos: -54.5,62.5 + parent: 12 + - uid: 28980 + components: + - type: Transform + pos: -54.5,61.5 + parent: 12 + - uid: 28982 + components: + - type: Transform + pos: -46.5,74.5 + parent: 12 + - uid: 29018 + components: + - type: Transform + pos: -53.5,69.5 + parent: 12 + - uid: 29039 + components: + - type: Transform + pos: -52.5,68.5 + parent: 12 + - uid: 29040 + components: + - type: Transform + pos: -51.5,68.5 + parent: 12 + - uid: 29041 + components: + - type: Transform + pos: -52.5,75.5 + parent: 12 + - uid: 29042 + components: + - type: Transform + pos: -53.5,74.5 + parent: 12 + - uid: 29043 + components: + - type: Transform + pos: -53.5,75.5 + parent: 12 + - uid: 29059 + components: + - type: Transform + pos: -53.5,70.5 + parent: 12 - uid: 29093 components: - type: Transform pos: 32.5,18.5 parent: 12 + - uid: 29102 + components: + - type: Transform + pos: -46.5,75.5 + parent: 12 - uid: 29124 components: - type: Transform @@ -42066,6 +43091,16 @@ entities: - type: Transform pos: 48.5,5.5 parent: 12 + - uid: 29368 + components: + - type: Transform + pos: -53.5,62.5 + parent: 12 + - uid: 29373 + components: + - type: Transform + pos: -55.5,62.5 + parent: 12 - uid: 29414 components: - type: Transform @@ -42091,111 +43126,16 @@ entities: - type: Transform pos: -44.5,65.5 parent: 12 - - uid: 29601 - components: - - type: Transform - pos: -43.5,73.5 - parent: 12 - - uid: 29604 - components: - - type: Transform - pos: -44.5,73.5 - parent: 12 - - uid: 29617 - components: - - type: Transform - pos: -45.5,73.5 - parent: 12 - uid: 29618 components: - type: Transform pos: -46.5,73.5 parent: 12 - - uid: 29619 - components: - - type: Transform - pos: -47.5,73.5 - parent: 12 - - uid: 29620 - components: - - type: Transform - pos: -48.5,73.5 - parent: 12 - - uid: 29621 - components: - - type: Transform - pos: -49.5,73.5 - parent: 12 - - uid: 29622 - components: - - type: Transform - pos: -49.5,72.5 - parent: 12 - - uid: 29623 - components: - - type: Transform - pos: -50.5,72.5 - parent: 12 - - uid: 29624 - components: - - type: Transform - pos: -50.5,71.5 - parent: 12 - - uid: 29625 - components: - - type: Transform - pos: -51.5,71.5 - parent: 12 - - uid: 29626 - components: - - type: Transform - pos: -51.5,70.5 - parent: 12 - - uid: 29627 - components: - - type: Transform - pos: -51.5,69.5 - parent: 12 - - uid: 29628 - components: - - type: Transform - pos: -51.5,68.5 - parent: 12 - - uid: 29629 - components: - - type: Transform - pos: -51.5,67.5 - parent: 12 - - uid: 29630 - components: - - type: Transform - pos: -50.5,69.5 - parent: 12 - - uid: 29631 - components: - - type: Transform - pos: -49.5,69.5 - parent: 12 - - uid: 29632 - components: - - type: Transform - pos: -48.5,69.5 - parent: 12 - - uid: 29633 - components: - - type: Transform - pos: -47.5,69.5 - parent: 12 - uid: 29635 components: - type: Transform pos: -46.5,68.5 parent: 12 - - uid: 29637 - components: - - type: Transform - pos: -45.5,69.5 - parent: 12 - uid: 29639 components: - type: Transform @@ -42206,26 +43146,6 @@ entities: - type: Transform pos: -46.5,71.5 parent: 12 - - uid: 29643 - components: - - type: Transform - pos: -44.5,69.5 - parent: 12 - - uid: 29644 - components: - - type: Transform - pos: -43.5,69.5 - parent: 12 - - uid: 29645 - components: - - type: Transform - pos: -43.5,68.5 - parent: 12 - - uid: 29646 - components: - - type: Transform - pos: -42.5,68.5 - parent: 12 - uid: 29649 components: - type: Transform @@ -42376,11 +43296,6 @@ entities: - type: Transform pos: -41.5,65.5 parent: 12 - - uid: 29755 - components: - - type: Transform - pos: -41.5,66.5 - parent: 12 - uid: 29756 components: - type: Transform @@ -42541,11 +43456,6 @@ entities: - type: Transform pos: 11.5,-24.5 parent: 12 - - uid: 29980 - components: - - type: Transform - pos: 14.5,-24.5 - parent: 12 - uid: 29983 components: - type: Transform @@ -42561,6 +43471,126 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 12 + - uid: 30037 + components: + - type: Transform + pos: -31.5,73.5 + parent: 12 + - uid: 30047 + components: + - type: Transform + pos: -31.5,74.5 + parent: 12 + - uid: 30052 + components: + - type: Transform + pos: -31.5,75.5 + parent: 12 + - uid: 30056 + components: + - type: Transform + pos: -31.5,76.5 + parent: 12 + - uid: 30057 + components: + - type: Transform + pos: -31.5,77.5 + parent: 12 + - uid: 30059 + components: + - type: Transform + pos: -31.5,78.5 + parent: 12 + - uid: 30062 + components: + - type: Transform + pos: -30.5,78.5 + parent: 12 + - uid: 30063 + components: + - type: Transform + pos: -29.5,78.5 + parent: 12 + - uid: 30064 + components: + - type: Transform + pos: -28.5,78.5 + parent: 12 + - uid: 30068 + components: + - type: Transform + pos: -27.5,78.5 + parent: 12 + - uid: 30072 + components: + - type: Transform + pos: -28.5,77.5 + parent: 12 + - uid: 30078 + components: + - type: Transform + pos: -38.5,73.5 + parent: 12 + - uid: 30085 + components: + - type: Transform + pos: -38.5,74.5 + parent: 12 + - uid: 30088 + components: + - type: Transform + pos: -37.5,74.5 + parent: 12 + - uid: 30094 + components: + - type: Transform + pos: -37.5,75.5 + parent: 12 + - uid: 30096 + components: + - type: Transform + pos: -37.5,76.5 + parent: 12 + - uid: 30101 + components: + - type: Transform + pos: -37.5,77.5 + parent: 12 + - uid: 30112 + components: + - type: Transform + pos: -37.5,78.5 + parent: 12 + - uid: 30144 + components: + - type: Transform + pos: -41.5,67.5 + parent: 12 + - uid: 30149 + components: + - type: Transform + pos: -42.5,67.5 + parent: 12 + - uid: 30159 + components: + - type: Transform + pos: -43.5,67.5 + parent: 12 + - uid: 30163 + components: + - type: Transform + pos: -43.5,68.5 + parent: 12 + - uid: 30165 + components: + - type: Transform + pos: -44.5,68.5 + parent: 12 + - uid: 30175 + components: + - type: Transform + pos: -45.5,68.5 + parent: 12 - uid: 30242 components: - type: Transform @@ -43461,21 +44491,6 @@ entities: - type: Transform pos: -61.5,-19.5 parent: 12 - - uid: 31645 - components: - - type: Transform - pos: -59.5,-28.5 - parent: 12 - - uid: 31646 - components: - - type: Transform - pos: -60.5,-28.5 - parent: 12 - - uid: 31647 - components: - - type: Transform - pos: -61.5,-28.5 - parent: 12 - uid: 31648 components: - type: Transform @@ -43501,31 +44516,6 @@ entities: - type: Transform pos: -65.5,-27.5 parent: 12 - - uid: 31653 - components: - - type: Transform - pos: -61.5,-26.5 - parent: 12 - - uid: 31654 - components: - - type: Transform - pos: -61.5,-25.5 - parent: 12 - - uid: 31655 - components: - - type: Transform - pos: -61.5,-24.5 - parent: 12 - - uid: 31656 - components: - - type: Transform - pos: -61.5,-23.5 - parent: 12 - - uid: 31657 - components: - - type: Transform - pos: -61.5,-22.5 - parent: 12 - uid: 31658 components: - type: Transform @@ -43536,16 +44526,6 @@ entities: - type: Transform pos: -61.5,-20.5 parent: 12 - - uid: 31660 - components: - - type: Transform - pos: -60.5,-20.5 - parent: 12 - - uid: 31661 - components: - - type: Transform - pos: -59.5,-20.5 - parent: 12 - uid: 31662 components: - type: Transform @@ -43586,11 +44566,6 @@ entities: - type: Transform pos: -65.5,-19.5 parent: 12 - - uid: 31710 - components: - - type: Transform - pos: -61.5,-29.5 - parent: 12 - uid: 31711 components: - type: Transform @@ -43781,11 +44756,6 @@ entities: - type: Transform pos: 44.4912,60.56555 parent: 12 - - uid: 1048 - components: - - type: Transform - pos: -52.5,-16.5 - parent: 12 - uid: 9130 components: - type: Transform @@ -43801,11 +44771,6 @@ entities: - type: Transform pos: 43.47266,63.509254 parent: 12 - - uid: 22062 - components: - - type: Transform - pos: -22.412212,55.392742 - parent: 12 - uid: 31067 components: - type: Transform @@ -43819,6 +44784,11 @@ entities: parent: 12 - proto: CableApcStack10 entities: + - uid: 3011 + components: + - type: Transform + pos: -25.504803,56.737953 + parent: 12 - uid: 17622 components: - type: Transform @@ -43826,10 +44796,16 @@ entities: parent: 12 - proto: Cablecuffs entities: - - uid: 22063 + - uid: 5820 components: - type: Transform - pos: -24.345606,55.376434 + pos: -24.5,54.5 + parent: 12 + - uid: 23759 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -54.55476,56.53342 parent: 12 - uid: 31135 components: @@ -43844,11 +44820,6 @@ entities: - type: Transform pos: 54.5,7.5 parent: 12 - - uid: 21 - components: - - type: Transform - pos: 50.5,62.5 - parent: 12 - uid: 71 components: - type: Transform @@ -43879,6 +44850,11 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 12 + - uid: 212 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 12 - uid: 230 components: - type: Transform @@ -43924,6 +44900,16 @@ entities: - type: Transform pos: 8.5,28.5 parent: 12 + - uid: 510 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 12 + - uid: 617 + components: + - type: Transform + pos: 36.5,2.5 + parent: 12 - uid: 693 components: - type: Transform @@ -43974,11 +44960,6 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 12 - - uid: 899 - components: - - type: Transform - pos: 39.5,3.5 - parent: 12 - uid: 904 components: - type: Transform @@ -43999,6 +44980,11 @@ entities: - type: Transform pos: -44.5,-14.5 parent: 12 + - uid: 1048 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 12 - uid: 1170 components: - type: Transform @@ -44154,21 +45140,11 @@ entities: - type: Transform pos: 35.5,-1.5 parent: 12 - - uid: 1348 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 12 - uid: 1349 components: - type: Transform pos: 43.5,-3.5 parent: 12 - - uid: 1350 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - uid: 1353 components: - type: Transform @@ -44177,12 +45153,7 @@ entities: - uid: 1358 components: - type: Transform - pos: -15.5,-29.5 - parent: 12 - - uid: 1359 - components: - - type: Transform - pos: -15.5,-28.5 + pos: 38.5,2.5 parent: 12 - uid: 1360 components: @@ -44249,11 +45220,6 @@ entities: - type: Transform pos: 61.5,4.5 parent: 12 - - uid: 2090 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - uid: 2119 components: - type: Transform @@ -44329,6 +45295,31 @@ entities: - type: Transform pos: 30.5,-12.5 parent: 12 + - uid: 2392 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 12 + - uid: 2394 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 12 + - uid: 2410 + components: + - type: Transform + pos: 40.5,1.5 + parent: 12 + - uid: 2413 + components: + - type: Transform + pos: 39.5,0.5 + parent: 12 + - uid: 2422 + components: + - type: Transform + pos: 39.5,2.5 + parent: 12 - uid: 2466 components: - type: Transform @@ -44339,6 +45330,11 @@ entities: - type: Transform pos: 14.5,-15.5 parent: 12 + - uid: 2575 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 12 - uid: 2669 components: - type: Transform @@ -44379,26 +45375,11 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 12 - - uid: 3077 - components: - - type: Transform - pos: 37.5,3.5 - parent: 12 - uid: 3131 components: - type: Transform pos: 8.5,-14.5 parent: 12 - - uid: 3147 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 - - uid: 3148 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 12 - uid: 3149 components: - type: Transform @@ -44569,6 +45550,11 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 12 + - uid: 3238 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 12 - uid: 3517 components: - type: Transform @@ -44579,6 +45565,11 @@ entities: - type: Transform pos: 16.5,5.5 parent: 12 + - uid: 3940 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 12 - uid: 3945 components: - type: Transform @@ -44689,6 +45680,21 @@ entities: - type: Transform pos: 12.5,-18.5 parent: 12 + - uid: 4466 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 12 + - uid: 4467 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 12 + - uid: 4470 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 12 - uid: 4480 components: - type: Transform @@ -44909,6 +45915,16 @@ entities: - type: Transform pos: 12.5,-16.5 parent: 12 + - uid: 4551 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 12 + - uid: 4552 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 12 - uid: 4600 components: - type: Transform @@ -44979,6 +45995,11 @@ entities: - type: Transform pos: -14.5,-23.5 parent: 12 + - uid: 4709 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 12 - uid: 4713 components: - type: Transform @@ -44999,11 +46020,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 12 - - uid: 4785 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 12 - uid: 4799 components: - type: Transform @@ -45034,11 +46050,6 @@ entities: - type: Transform pos: 5.5,1.5 parent: 12 - - uid: 4875 - components: - - type: Transform - pos: 40.5,0.5 - parent: 12 - uid: 4895 components: - type: Transform @@ -45054,11 +46065,6 @@ entities: - type: Transform pos: 34.5,-1.5 parent: 12 - - uid: 4957 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 12 - uid: 4970 components: - type: Transform @@ -45259,6 +46265,26 @@ entities: - type: Transform pos: 1.5,15.5 parent: 12 + - uid: 5483 + components: + - type: Transform + pos: 21.5,2.5 + parent: 12 + - uid: 5487 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 12 + - uid: 5500 + components: + - type: Transform + pos: 39.5,1.5 + parent: 12 + - uid: 5535 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 12 - uid: 5638 components: - type: Transform @@ -45279,6 +46305,11 @@ entities: - type: Transform pos: 17.5,-16.5 parent: 12 + - uid: 5725 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 12 - uid: 5759 components: - type: Transform @@ -45309,6 +46340,11 @@ entities: - type: Transform pos: 9.5,-20.5 parent: 12 + - uid: 6291 + components: + - type: Transform + pos: 37.5,2.5 + parent: 12 - uid: 6414 components: - type: Transform @@ -46039,11 +47075,6 @@ entities: - type: Transform pos: 29.5,5.5 parent: 12 - - uid: 7283 - components: - - type: Transform - pos: 33.5,0.5 - parent: 12 - uid: 7284 components: - type: Transform @@ -46074,6 +47105,11 @@ entities: - type: Transform pos: 61.5,0.5 parent: 12 + - uid: 7485 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 12 - uid: 7549 components: - type: Transform @@ -46404,11 +47440,6 @@ entities: - type: Transform pos: 30.5,16.5 parent: 12 - - uid: 8441 - components: - - type: Transform - pos: 34.5,0.5 - parent: 12 - uid: 8494 components: - type: Transform @@ -46774,6 +47805,11 @@ entities: - type: Transform pos: -55.5,22.5 parent: 12 + - uid: 10345 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 12 - uid: 10462 components: - type: Transform @@ -47079,25 +48115,10 @@ entities: - type: Transform pos: 43.5,-0.5 parent: 12 - - uid: 10814 + - uid: 10803 components: - type: Transform - pos: 36.5,4.5 - parent: 12 - - uid: 10815 - components: - - type: Transform - pos: 35.5,4.5 - parent: 12 - - uid: 10816 - components: - - type: Transform - pos: 34.5,4.5 - parent: 12 - - uid: 10817 - components: - - type: Transform - pos: 33.5,4.5 + pos: 22.5,3.5 parent: 12 - uid: 10827 components: @@ -47259,6 +48280,11 @@ entities: - type: Transform pos: 27.5,10.5 parent: 12 + - uid: 10874 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 12 - uid: 10878 components: - type: Transform @@ -47419,6 +48445,11 @@ entities: - type: Transform pos: 18.5,20.5 parent: 12 + - uid: 11323 + components: + - type: Transform + pos: 21.5,3.5 + parent: 12 - uid: 11330 components: - type: Transform @@ -47454,11 +48485,6 @@ entities: - type: Transform pos: 21.5,24.5 parent: 12 - - uid: 11377 - components: - - type: Transform - pos: 35.5,0.5 - parent: 12 - uid: 11395 components: - type: Transform @@ -47524,16 +48550,6 @@ entities: - type: Transform pos: 62.5,6.5 parent: 12 - - uid: 11591 - components: - - type: Transform - pos: 40.5,3.5 - parent: 12 - - uid: 11646 - components: - - type: Transform - pos: 38.5,3.5 - parent: 12 - uid: 11867 components: - type: Transform @@ -47614,16 +48630,16 @@ entities: - type: Transform pos: -2.5,34.5 parent: 12 + - uid: 11944 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 12 - uid: 11955 components: - type: Transform pos: 40.5,-0.5 parent: 12 - - uid: 11978 - components: - - type: Transform - pos: 40.5,2.5 - parent: 12 - uid: 11986 components: - type: Transform @@ -50359,56 +51375,16 @@ entities: - type: Transform pos: 1.5,62.5 parent: 12 - - uid: 18558 - components: - - type: Transform - pos: 50.5,57.5 - parent: 12 - - uid: 18559 - components: - - type: Transform - pos: 50.5,58.5 - parent: 12 - - uid: 18560 - components: - - type: Transform - pos: 50.5,59.5 - parent: 12 - - uid: 18561 - components: - - type: Transform - pos: 50.5,60.5 - parent: 12 - - uid: 18562 - components: - - type: Transform - pos: 50.5,61.5 - parent: 12 - - uid: 18627 - components: - - type: Transform - pos: 50.5,63.5 - parent: 12 - - uid: 18628 - components: - - type: Transform - pos: 51.5,63.5 - parent: 12 - - uid: 18629 - components: - - type: Transform - pos: 52.5,63.5 - parent: 12 - - uid: 18630 - components: - - type: Transform - pos: 53.5,63.5 - parent: 12 - uid: 18640 components: - type: Transform pos: 53.5,61.5 parent: 12 + - uid: 18709 + components: + - type: Transform + pos: -22.5,-67.5 + parent: 12 - uid: 19244 components: - type: Transform @@ -50759,6 +51735,16 @@ entities: - type: Transform pos: -49.5,46.5 parent: 12 + - uid: 21032 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 12 + - uid: 21065 + components: + - type: Transform + pos: -31.5,-68.5 + parent: 12 - uid: 21077 components: - type: Transform @@ -50829,6 +51815,11 @@ entities: - type: Transform pos: -10.5,-2.5 parent: 12 + - uid: 21906 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 12 - uid: 21912 components: - type: Transform @@ -50854,6 +51845,11 @@ entities: - type: Transform pos: 15.5,5.5 parent: 12 + - uid: 21935 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 12 - uid: 21937 components: - type: Transform @@ -50894,6 +51890,11 @@ entities: - type: Transform pos: 31.5,-7.5 parent: 12 + - uid: 22063 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 12 - uid: 22109 components: - type: Transform @@ -50939,11 +51940,6 @@ entities: - type: Transform pos: -49.5,25.5 parent: 12 - - uid: 23101 - components: - - type: Transform - pos: 40.5,1.5 - parent: 12 - uid: 23104 components: - type: Transform @@ -51474,6 +52470,11 @@ entities: - type: Transform pos: -24.5,-46.5 parent: 12 + - uid: 24565 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 12 - uid: 24633 components: - type: Transform @@ -51554,6 +52555,11 @@ entities: - type: Transform pos: 58.5,5.5 parent: 12 + - uid: 25534 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 12 - uid: 25535 components: - type: Transform @@ -51569,6 +52575,11 @@ entities: - type: Transform pos: 30.5,14.5 parent: 12 + - uid: 25613 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 12 - uid: 25763 components: - type: Transform @@ -51809,11 +52820,6 @@ entities: - type: Transform pos: -25.5,-54.5 parent: 12 - - uid: 25888 - components: - - type: Transform - pos: 36.5,0.5 - parent: 12 - uid: 26072 components: - type: Transform @@ -51969,11 +52975,21 @@ entities: - type: Transform pos: -9.5,-19.5 parent: 12 + - uid: 26552 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 12 - uid: 26583 components: - type: Transform pos: 30.5,-2.5 parent: 12 + - uid: 26589 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 - uid: 26606 components: - type: Transform @@ -52049,10 +53065,10 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 - - uid: 26690 + - uid: 26680 components: - type: Transform - pos: 36.5,3.5 + pos: 40.5,-14.5 parent: 12 - uid: 26701 components: @@ -52069,6 +53085,16 @@ entities: - type: Transform pos: 65.5,0.5 parent: 12 + - uid: 26713 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 12 + - uid: 26714 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 12 - uid: 26719 components: - type: Transform @@ -52119,15 +53145,70 @@ entities: - type: Transform pos: 45.5,8.5 parent: 12 + - uid: 26752 + components: + - type: Transform + pos: 22.5,4.5 + parent: 12 + - uid: 26757 + components: + - type: Transform + pos: 21.5,0.5 + parent: 12 + - uid: 26763 + components: + - type: Transform + pos: 21.5,1.5 + parent: 12 - uid: 26805 components: - type: Transform pos: 31.5,-4.5 parent: 12 - - uid: 26833 + - uid: 26853 components: - type: Transform - pos: 40.5,-1.5 + pos: 21.5,-9.5 + parent: 12 + - uid: 26855 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 12 + - uid: 26857 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 12 + - uid: 26859 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 12 + - uid: 26860 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 12 + - uid: 26862 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 12 + - uid: 26863 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 12 + - uid: 26864 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 12 + - uid: 26867 + components: + - type: Transform + pos: 21.5,-14.5 parent: 12 - uid: 26893 components: @@ -52139,6 +53220,21 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 12 + - uid: 26901 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 12 + - uid: 26950 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 12 + - uid: 26975 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 12 - uid: 27028 components: - type: Transform @@ -52219,6 +53315,21 @@ entities: - type: Transform pos: 43.5,-11.5 parent: 12 + - uid: 27123 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 12 + - uid: 27124 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 12 + - uid: 27126 + components: + - type: Transform + pos: -19.5,-67.5 + parent: 12 - uid: 27132 components: - type: Transform @@ -52514,6 +53625,11 @@ entities: - type: Transform pos: 44.5,-13.5 parent: 12 + - uid: 27245 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 12 - uid: 27339 components: - type: Transform @@ -52749,50 +53865,15 @@ entities: - type: Transform pos: -58.5,-18.5 parent: 12 - - uid: 27495 - components: - - type: Transform - pos: -58.5,-17.5 - parent: 12 - - uid: 27496 - components: - - type: Transform - pos: -57.5,-17.5 - parent: 12 - - uid: 27497 - components: - - type: Transform - pos: -57.5,-16.5 - parent: 12 - - uid: 27498 - components: - - type: Transform - pos: -56.5,-16.5 - parent: 12 - uid: 27499 components: - type: Transform - pos: -55.5,-16.5 - parent: 12 - - uid: 27500 - components: - - type: Transform - pos: -54.5,-16.5 + pos: -32.5,-66.5 parent: 12 - uid: 27501 components: - type: Transform - pos: -53.5,-16.5 - parent: 12 - - uid: 27502 - components: - - type: Transform - pos: -52.5,-16.5 - parent: 12 - - uid: 27503 - components: - - type: Transform - pos: -51.5,-16.5 + pos: -28.5,-68.5 parent: 12 - uid: 27504 components: @@ -52834,6 +53915,11 @@ entities: - type: Transform pos: -45.5,-14.5 parent: 12 + - uid: 27514 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 12 - uid: 27515 components: - type: Transform @@ -53089,6 +54175,16 @@ entities: - type: Transform pos: -53.5,-33.5 parent: 12 + - uid: 27600 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 12 + - uid: 27601 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 12 - uid: 27609 components: - type: Transform @@ -53339,16 +54435,181 @@ entities: - type: Transform pos: -37.5,-30.5 parent: 12 + - uid: 27707 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 12 + - uid: 27718 + components: + - type: Transform + pos: -19.5,-66.5 + parent: 12 - uid: 27923 components: - type: Transform pos: -34.5,59.5 parent: 12 + - uid: 27991 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 12 + - uid: 27993 + components: + - type: Transform + pos: -25.5,-69.5 + parent: 12 + - uid: 28118 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 12 + - uid: 28119 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 12 + - uid: 28121 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 12 + - uid: 28142 + components: + - type: Transform + pos: -36.5,-64.5 + parent: 12 + - uid: 28144 + components: + - type: Transform + pos: -37.5,-64.5 + parent: 12 + - uid: 28145 + components: + - type: Transform + pos: -38.5,-64.5 + parent: 12 + - uid: 28160 + components: + - type: Transform + pos: -38.5,-66.5 + parent: 12 + - uid: 28161 + components: + - type: Transform + pos: -37.5,-66.5 + parent: 12 + - uid: 28162 + components: + - type: Transform + pos: -36.5,-66.5 + parent: 12 + - uid: 28181 + components: + - type: Transform + pos: -36.5,-68.5 + parent: 12 + - uid: 28192 + components: + - type: Transform + pos: -38.5,-68.5 + parent: 12 + - uid: 28193 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 12 + - uid: 28199 + components: + - type: Transform + pos: -29.5,-68.5 + parent: 12 + - uid: 28210 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 12 - uid: 28221 components: - type: Transform pos: -33.5,59.5 parent: 12 + - uid: 28223 + components: + - type: Transform + pos: -18.5,-65.5 + parent: 12 + - uid: 28225 + components: + - type: Transform + pos: -32.5,-64.5 + parent: 12 + - uid: 28226 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 12 + - uid: 28227 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 12 + - uid: 28228 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 12 + - uid: 28229 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 12 + - uid: 28234 + components: + - type: Transform + pos: -28.5,-62.5 + parent: 12 + - uid: 28235 + components: + - type: Transform + pos: -29.5,-62.5 + parent: 12 + - uid: 28236 + components: + - type: Transform + pos: -30.5,-62.5 + parent: 12 + - uid: 28240 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 12 + - uid: 28241 + components: + - type: Transform + pos: -32.5,-62.5 + parent: 12 + - uid: 28285 + components: + - type: Transform + pos: -31.5,-66.5 + parent: 12 + - uid: 28287 + components: + - type: Transform + pos: -29.5,-66.5 + parent: 12 + - uid: 28289 + components: + - type: Transform + pos: -28.5,-66.5 + parent: 12 + - uid: 28290 + components: + - type: Transform + pos: -30.5,-66.5 + parent: 12 - uid: 28430 components: - type: Transform @@ -53754,10 +55015,10 @@ entities: - type: Transform pos: 30.5,-5.5 parent: 12 - - uid: 29001 + - uid: 29002 components: - type: Transform - pos: 36.5,2.5 + pos: -28.5,-63.5 parent: 12 - uid: 29047 components: @@ -53774,10 +55035,10 @@ entities: - type: Transform pos: 18.5,21.5 parent: 12 - - uid: 29087 + - uid: 29091 components: - type: Transform - pos: 36.5,1.5 + pos: 4.5,-54.5 parent: 12 - uid: 29182 components: @@ -53804,6 +55065,96 @@ entities: - type: Transform pos: 45.5,5.5 parent: 12 + - uid: 29426 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 12 + - uid: 29432 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 12 + - uid: 29433 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 12 + - uid: 29469 + components: + - type: Transform + pos: -40.5,-63.5 + parent: 12 + - uid: 29470 + components: + - type: Transform + pos: -40.5,-64.5 + parent: 12 + - uid: 29471 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 12 + - uid: 29472 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 12 + - uid: 29473 + components: + - type: Transform + pos: -39.5,-66.5 + parent: 12 + - uid: 29474 + components: + - type: Transform + pos: -40.5,-66.5 + parent: 12 + - uid: 29475 + components: + - type: Transform + pos: -40.5,-68.5 + parent: 12 + - uid: 29476 + components: + - type: Transform + pos: -39.5,-68.5 + parent: 12 + - uid: 29478 + components: + - type: Transform + pos: -40.5,-67.5 + parent: 12 + - uid: 29479 + components: + - type: Transform + pos: -36.5,-67.5 + parent: 12 + - uid: 29480 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 12 + - uid: 29481 + components: + - type: Transform + pos: -32.5,-63.5 + parent: 12 + - uid: 29482 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 12 + - uid: 29483 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 12 + - uid: 29484 + components: + - type: Transform + pos: -35.5,-67.5 + parent: 12 - uid: 29873 components: - type: Transform @@ -55179,6 +56530,11 @@ entities: - type: Transform pos: 0.5,2.5 parent: 12 + - uid: 211 + components: + - type: Transform + pos: 15.5,13.5 + parent: 12 - uid: 278 components: - type: Transform @@ -55314,11 +56670,6 @@ entities: - type: Transform pos: 50.5,61.5 parent: 12 - - uid: 1054 - components: - - type: Transform - pos: 50.5,63.5 - parent: 12 - uid: 1070 components: - type: Transform @@ -56084,6 +57435,11 @@ entities: - type: Transform pos: 0.5,-37.5 parent: 12 + - uid: 3143 + components: + - type: Transform + pos: -38.5,61.5 + parent: 12 - uid: 3160 components: - type: Transform @@ -56114,16 +57470,6 @@ entities: - type: Transform pos: 10.5,-43.5 parent: 12 - - uid: 3199 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 - - uid: 3200 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 12 - uid: 3201 components: - type: Transform @@ -56269,11 +57615,6 @@ entities: - type: Transform pos: -16.5,-42.5 parent: 12 - - uid: 3242 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 12 - uid: 3243 components: - type: Transform @@ -56434,11 +57775,6 @@ entities: - type: Transform pos: -23.5,-2.5 parent: 12 - - uid: 3591 - components: - - type: Transform - pos: 52.5,63.5 - parent: 12 - uid: 3613 components: - type: Transform @@ -56459,6 +57795,11 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 12 + - uid: 4012 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 12 - uid: 4258 components: - type: Transform @@ -56509,6 +57850,36 @@ entities: - type: Transform pos: 55.5,5.5 parent: 12 + - uid: 4412 + components: + - type: Transform + pos: 54.5,-1.5 + parent: 12 + - uid: 4434 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 12 + - uid: 4459 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 12 + - uid: 4464 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 12 + - uid: 4472 + components: + - type: Transform + pos: 54.5,1.5 + parent: 12 + - uid: 4473 + components: + - type: Transform + pos: 54.5,0.5 + parent: 12 - uid: 4602 components: - type: Transform @@ -56579,21 +57950,11 @@ entities: - type: Transform pos: 4.5,-16.5 parent: 12 - - uid: 4800 - components: - - type: Transform - pos: 40.5,0.5 - parent: 12 - uid: 4859 components: - type: Transform pos: 57.5,56.5 parent: 12 - - uid: 4910 - components: - - type: Transform - pos: 39.5,-1.5 - parent: 12 - uid: 4921 components: - type: Transform @@ -56614,11 +57975,6 @@ entities: - type: Transform pos: -11.5,-31.5 parent: 12 - - uid: 4969 - components: - - type: Transform - pos: 15.5,11.5 - parent: 12 - uid: 4977 components: - type: Transform @@ -56654,11 +58010,6 @@ entities: - type: Transform pos: 30.5,-9.5 parent: 12 - - uid: 5093 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - uid: 5102 components: - type: Transform @@ -57029,6 +58380,31 @@ entities: - type: Transform pos: 32.5,16.5 parent: 12 + - uid: 6306 + components: + - type: Transform + pos: 54.5,62.5 + parent: 12 + - uid: 6307 + components: + - type: Transform + pos: 51.5,62.5 + parent: 12 + - uid: 6314 + components: + - type: Transform + pos: 53.5,62.5 + parent: 12 + - uid: 6317 + components: + - type: Transform + pos: 52.5,62.5 + parent: 12 + - uid: 6349 + components: + - type: Transform + pos: 37.5,0.5 + parent: 12 - uid: 6354 components: - type: Transform @@ -57054,6 +58430,11 @@ entities: - type: Transform pos: 28.5,-8.5 parent: 12 + - uid: 6739 + components: + - type: Transform + pos: 61.5,9.5 + parent: 12 - uid: 6756 components: - type: Transform @@ -57064,6 +58445,16 @@ entities: - type: Transform pos: 9.5,-21.5 parent: 12 + - uid: 6775 + components: + - type: Transform + pos: 61.5,8.5 + parent: 12 + - uid: 6777 + components: + - type: Transform + pos: -49.5,55.5 + parent: 12 - uid: 6891 components: - type: Transform @@ -57084,6 +58475,16 @@ entities: - type: Transform pos: 10.5,-39.5 parent: 12 + - uid: 7101 + components: + - type: Transform + pos: 61.5,7.5 + parent: 12 + - uid: 7114 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 12 - uid: 7124 components: - type: Transform @@ -57124,11 +58525,6 @@ entities: - type: Transform pos: 15.5,5.5 parent: 12 - - uid: 7276 - components: - - type: Transform - pos: 52.5,-0.5 - parent: 12 - uid: 7328 components: - type: Transform @@ -57769,11 +59165,6 @@ entities: - type: Transform pos: -36.5,-35.5 parent: 12 - - uid: 8297 - components: - - type: Transform - pos: 53.5,63.5 - parent: 12 - uid: 8805 components: - type: Transform @@ -57799,11 +59190,6 @@ entities: - type: Transform pos: 64.5,6.5 parent: 12 - - uid: 9069 - components: - - type: Transform - pos: 40.5,2.5 - parent: 12 - uid: 9070 components: - type: Transform @@ -57864,11 +59250,6 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 12 - - uid: 9433 - components: - - type: Transform - pos: 40.5,3.5 - parent: 12 - uid: 9444 components: - type: Transform @@ -57919,11 +59300,6 @@ entities: - type: Transform pos: 54.5,11.5 parent: 12 - - uid: 9503 - components: - - type: Transform - pos: 15.5,12.5 - parent: 12 - uid: 9505 components: - type: Transform @@ -57974,36 +59350,16 @@ entities: - type: Transform pos: 30.5,4.5 parent: 12 + - uid: 9644 + components: + - type: Transform + pos: -42.5,67.5 + parent: 12 - uid: 9655 components: - type: Transform pos: 17.5,-21.5 parent: 12 - - uid: 9671 - components: - - type: Transform - pos: 37.5,-1.5 - parent: 12 - - uid: 9711 - components: - - type: Transform - pos: 51.5,0.5 - parent: 12 - - uid: 9720 - components: - - type: Transform - pos: 38.5,-1.5 - parent: 12 - - uid: 9820 - components: - - type: Transform - pos: 40.5,-1.5 - parent: 12 - - uid: 9840 - components: - - type: Transform - pos: 38.5,4.5 - parent: 12 - uid: 9866 components: - type: Transform @@ -58269,11 +59625,6 @@ entities: - type: Transform pos: -1.5,-33.5 parent: 12 - - uid: 10001 - components: - - type: Transform - pos: 39.5,4.5 - parent: 12 - uid: 10020 components: - type: Transform @@ -58309,11 +59660,6 @@ entities: - type: Transform pos: -0.5,-18.5 parent: 12 - - uid: 10144 - components: - - type: Transform - pos: 52.5,0.5 - parent: 12 - uid: 10196 components: - type: Transform @@ -58334,11 +59680,6 @@ entities: - type: Transform pos: -54.5,13.5 parent: 12 - - uid: 10305 - components: - - type: Transform - pos: 58.5,7.5 - parent: 12 - uid: 10307 components: - type: Transform @@ -58529,11 +59870,6 @@ entities: - type: Transform pos: -6.5,30.5 parent: 12 - - uid: 10812 - components: - - type: Transform - pos: 40.5,1.5 - parent: 12 - uid: 10919 components: - type: Transform @@ -58569,21 +59905,11 @@ entities: - type: Transform pos: 30.5,5.5 parent: 12 - - uid: 10996 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 12 - uid: 11034 components: - type: Transform pos: -47.5,15.5 parent: 12 - - uid: 11323 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 12 - uid: 11331 components: - type: Transform @@ -58627,7 +59953,7 @@ entities: - uid: 11487 components: - type: Transform - pos: -52.5,59.5 + pos: -47.5,68.5 parent: 12 - uid: 11517 components: @@ -58924,11 +60250,6 @@ entities: - type: Transform pos: 50.5,25.5 parent: 12 - - uid: 12640 - components: - - type: Transform - pos: -52.5,58.5 - parent: 12 - uid: 12856 components: - type: Transform @@ -60024,11 +61345,6 @@ entities: - type: Transform pos: 33.5,50.5 parent: 12 - - uid: 15371 - components: - - type: Transform - pos: 51.5,63.5 - parent: 12 - uid: 15372 components: - type: Transform @@ -60604,10 +61920,10 @@ entities: - type: Transform pos: -0.5,3.5 parent: 12 - - uid: 16546 + - uid: 16586 components: - type: Transform - pos: 52.5,1.5 + pos: 16.5,11.5 parent: 12 - uid: 16644 components: @@ -61619,11 +62935,6 @@ entities: - type: Transform pos: -23.5,59.5 parent: 12 - - uid: 19514 - components: - - type: Transform - pos: -38.5,61.5 - parent: 12 - uid: 19515 components: - type: Transform @@ -61729,6 +63040,11 @@ entities: - type: Transform pos: -47.5,17.5 parent: 12 + - uid: 20097 + components: + - type: Transform + pos: -44.5,68.5 + parent: 12 - uid: 20343 components: - type: Transform @@ -62564,6 +63880,11 @@ entities: - type: Transform pos: -44.5,60.5 parent: 12 + - uid: 20521 + components: + - type: Transform + pos: -43.5,68.5 + parent: 12 - uid: 20524 components: - type: Transform @@ -62619,11 +63940,6 @@ entities: - type: Transform pos: -48.5,55.5 parent: 12 - - uid: 20539 - components: - - type: Transform - pos: -49.5,56.5 - parent: 12 - uid: 20544 components: - type: Transform @@ -63059,26 +64375,11 @@ entities: - type: Transform pos: 39.5,18.5 parent: 12 - - uid: 22330 - components: - - type: Transform - pos: -53.5,57.5 - parent: 12 - - uid: 22338 - components: - - type: Transform - pos: -53.5,56.5 - parent: 12 - uid: 22524 components: - type: Transform pos: -2.5,34.5 parent: 12 - - uid: 23122 - components: - - type: Transform - pos: -53.5,58.5 - parent: 12 - uid: 23123 components: - type: Transform @@ -63089,20 +64390,10 @@ entities: - type: Transform pos: 16.5,-16.5 parent: 12 - - uid: 23713 + - uid: 23884 components: - type: Transform - pos: -55.5,61.5 - parent: 12 - - uid: 23715 - components: - - type: Transform - pos: -57.5,61.5 - parent: 12 - - uid: 23716 - components: - - type: Transform - pos: -56.5,61.5 + pos: -50.5,55.5 parent: 12 - uid: 24661 components: @@ -64119,6 +65410,11 @@ entities: - type: Transform pos: 58.5,4.5 parent: 12 + - uid: 26531 + components: + - type: Transform + pos: 16.5,10.5 + parent: 12 - uid: 26545 components: - type: Transform @@ -64234,11 +65530,6 @@ entities: - type: Transform pos: 63.5,2.5 parent: 12 - - uid: 26831 - components: - - type: Transform - pos: 52.5,2.5 - parent: 12 - uid: 26844 components: - type: Transform @@ -64259,36 +65550,26 @@ entities: - type: Transform pos: 54.5,2.5 parent: 12 - - uid: 26848 + - uid: 26884 components: - type: Transform - pos: 53.5,2.5 + pos: 62.5,9.5 parent: 12 - - uid: 26900 + - uid: 26885 components: - type: Transform - pos: 55.5,2.5 + pos: 57.5,6.5 parent: 12 - - uid: 27019 + - uid: 27091 components: - type: Transform - pos: 54.5,-0.5 - parent: 12 - - uid: 27113 - components: - - type: Transform - pos: 51.5,-0.5 + pos: 38.5,0.5 parent: 12 - uid: 27114 components: - type: Transform pos: 54.5,13.5 parent: 12 - - uid: 27115 - components: - - type: Transform - pos: 53.5,-0.5 - parent: 12 - uid: 27253 components: - type: Transform @@ -64299,11 +65580,6 @@ entities: - type: Transform pos: -33.5,-35.5 parent: 12 - - uid: 27325 - components: - - type: Transform - pos: 54.5,0.5 - parent: 12 - uid: 27358 components: - type: Transform @@ -64704,6 +65980,11 @@ entities: - type: Transform pos: -25.5,67.5 parent: 12 + - uid: 28165 + components: + - type: Transform + pos: -45.5,68.5 + parent: 12 - uid: 28220 components: - type: Transform @@ -64779,10 +66060,10 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 28888 + - uid: 28979 components: - type: Transform - pos: 54.5,1.5 + pos: -46.5,68.5 parent: 12 - uid: 28986 components: @@ -64999,241 +66280,41 @@ entities: - type: Transform pos: -44.5,65.5 parent: 12 + - uid: 29421 + components: + - type: Transform + pos: -47.5,67.5 + parent: 12 + - uid: 29424 + components: + - type: Transform + pos: -43.5,67.5 + parent: 12 + - uid: 29434 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 12 + - uid: 29435 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 12 + - uid: 29436 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 12 + - uid: 29437 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 12 - uid: 29466 components: - type: Transform pos: -50.5,62.5 parent: 12 - - uid: 29467 - components: - - type: Transform - pos: -52.5,62.5 - parent: 12 - - uid: 29468 - components: - - type: Transform - pos: -53.5,62.5 - parent: 12 - - uid: 29469 - components: - - type: Transform - pos: -51.5,62.5 - parent: 12 - - uid: 29470 - components: - - type: Transform - pos: -53.5,63.5 - parent: 12 - - uid: 29471 - components: - - type: Transform - pos: -53.5,64.5 - parent: 12 - - uid: 29472 - components: - - type: Transform - pos: -53.5,65.5 - parent: 12 - - uid: 29473 - components: - - type: Transform - pos: -53.5,66.5 - parent: 12 - - uid: 29474 - components: - - type: Transform - pos: -53.5,67.5 - parent: 12 - - uid: 29475 - components: - - type: Transform - pos: -53.5,68.5 - parent: 12 - - uid: 29476 - components: - - type: Transform - pos: -53.5,69.5 - parent: 12 - - uid: 29477 - components: - - type: Transform - pos: -53.5,70.5 - parent: 12 - - uid: 29478 - components: - - type: Transform - pos: -53.5,71.5 - parent: 12 - - uid: 29479 - components: - - type: Transform - pos: -53.5,72.5 - parent: 12 - - uid: 29480 - components: - - type: Transform - pos: -53.5,73.5 - parent: 12 - - uid: 29481 - components: - - type: Transform - pos: -52.5,73.5 - parent: 12 - - uid: 29482 - components: - - type: Transform - pos: -52.5,74.5 - parent: 12 - - uid: 29483 - components: - - type: Transform - pos: -51.5,74.5 - parent: 12 - - uid: 29484 - components: - - type: Transform - pos: -51.5,75.5 - parent: 12 - - uid: 29485 - components: - - type: Transform - pos: -50.5,75.5 - parent: 12 - - uid: 29486 - components: - - type: Transform - pos: -49.5,75.5 - parent: 12 - - uid: 29487 - components: - - type: Transform - pos: -48.5,75.5 - parent: 12 - - uid: 29488 - components: - - type: Transform - pos: -47.5,75.5 - parent: 12 - - uid: 29489 - components: - - type: Transform - pos: -46.5,75.5 - parent: 12 - - uid: 29490 - components: - - type: Transform - pos: -45.5,75.5 - parent: 12 - - uid: 29491 - components: - - type: Transform - pos: -44.5,75.5 - parent: 12 - - uid: 29492 - components: - - type: Transform - pos: -43.5,75.5 - parent: 12 - - uid: 29493 - components: - - type: Transform - pos: -42.5,75.5 - parent: 12 - - uid: 29494 - components: - - type: Transform - pos: -41.5,75.5 - parent: 12 - - uid: 29495 - components: - - type: Transform - pos: -40.5,75.5 - parent: 12 - - uid: 29496 - components: - - type: Transform - pos: -39.5,75.5 - parent: 12 - - uid: 29497 - components: - - type: Transform - pos: -38.5,75.5 - parent: 12 - - uid: 29498 - components: - - type: Transform - pos: -37.5,75.5 - parent: 12 - - uid: 29499 - components: - - type: Transform - pos: -36.5,75.5 - parent: 12 - - uid: 29500 - components: - - type: Transform - pos: -35.5,75.5 - parent: 12 - - uid: 29501 - components: - - type: Transform - pos: -33.5,75.5 - parent: 12 - - uid: 29502 - components: - - type: Transform - pos: -32.5,75.5 - parent: 12 - - uid: 29503 - components: - - type: Transform - pos: -34.5,75.5 - parent: 12 - - uid: 29504 - components: - - type: Transform - pos: -31.5,75.5 - parent: 12 - - uid: 29505 - components: - - type: Transform - pos: -30.5,75.5 - parent: 12 - - uid: 29506 - components: - - type: Transform - pos: -29.5,75.5 - parent: 12 - - uid: 29507 - components: - - type: Transform - pos: -28.5,75.5 - parent: 12 - - uid: 29508 - components: - - type: Transform - pos: -27.5,75.5 - parent: 12 - - uid: 29509 - components: - - type: Transform - pos: -26.5,75.5 - parent: 12 - - uid: 29510 - components: - - type: Transform - pos: -25.5,75.5 - parent: 12 - - uid: 29511 - components: - - type: Transform - pos: -25.5,74.5 - parent: 12 - - uid: 29512 - components: - - type: Transform - pos: -25.5,73.5 - parent: 12 - uid: 29513 components: - type: Transform @@ -65499,11 +66580,6 @@ entities: - type: Transform pos: -50.5,64.5 parent: 12 - - uid: 29648 - components: - - type: Transform - pos: -42.5,68.5 - parent: 12 - uid: 29699 components: - type: Transform @@ -65539,31 +66615,11 @@ entities: - type: Transform pos: 26.5,-21.5 parent: 12 - - uid: 29822 - components: - - type: Transform - pos: -53.5,61.5 - parent: 12 - uid: 29823 components: - type: Transform pos: 26.5,-22.5 parent: 12 - - uid: 29824 - components: - - type: Transform - pos: -54.5,61.5 - parent: 12 - - uid: 29826 - components: - - type: Transform - pos: -52.5,60.5 - parent: 12 - - uid: 29827 - components: - - type: Transform - pos: -53.5,60.5 - parent: 12 - uid: 29840 components: - type: Transform @@ -66156,6 +67212,24 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-44.5 parent: 12 + - uid: 10305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 12 + - uid: 10561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 12 + - uid: 10605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-15.5 + parent: 12 - uid: 14271 components: - type: Transform @@ -66172,6 +67246,12 @@ entities: - type: Transform pos: 38.5,-5.5 parent: 12 + - uid: 27220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-67.5 + parent: 12 - uid: 27377 components: - type: Transform @@ -66347,21 +67427,16 @@ entities: - type: Transform pos: 10.5,12.5 parent: 12 - - uid: 707 - components: - - type: Transform - pos: -52.5,-32.5 - parent: 12 - - uid: 708 - components: - - type: Transform - pos: -51.5,-32.5 - parent: 12 - uid: 5635 components: - type: Transform pos: 24.5,-4.5 parent: 12 + - uid: 14954 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 12 - uid: 26628 components: - type: Transform @@ -66369,150 +67444,6 @@ entities: parent: 12 - proto: Carpet entities: - - uid: 2376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-24.5 - parent: 12 - - uid: 2377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-23.5 - parent: 12 - - uid: 2378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-22.5 - parent: 12 - - uid: 2379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 12 - - uid: 2380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 12 - - uid: 2381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-19.5 - parent: 12 - - uid: 2382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-24.5 - parent: 12 - - uid: 2383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-23.5 - parent: 12 - - uid: 2384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-22.5 - parent: 12 - - uid: 2385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 - parent: 12 - - uid: 2386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-20.5 - parent: 12 - - uid: 2387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 12 - - uid: 2388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-24.5 - parent: 12 - - uid: 2389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-23.5 - parent: 12 - - uid: 2390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-22.5 - parent: 12 - - uid: 2391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 12 - - uid: 2392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-20.5 - parent: 12 - - uid: 2393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-19.5 - parent: 12 - - uid: 2394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 12 - - uid: 2395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-23.5 - parent: 12 - - uid: 2396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 12 - - uid: 2397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 12 - - uid: 2398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 12 - - uid: 2399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-19.5 - parent: 12 - uid: 4023 components: - type: Transform @@ -68405,42 +69336,6 @@ entities: parent: 12 - proto: CarpetOrange entities: - - uid: 2400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-24.5 - parent: 12 - - uid: 2401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-23.5 - parent: 12 - - uid: 2402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-22.5 - parent: 12 - - uid: 2403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-23.5 - parent: 12 - - uid: 2404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 12 - - uid: 2405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 12 - uid: 12116 components: - type: Transform @@ -68791,149 +69686,137 @@ entities: parent: 12 - proto: CarpetPurple entities: - - uid: 2406 + - uid: 2395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 12 - - uid: 2407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-24.5 - parent: 12 - - uid: 2408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-24.5 - parent: 12 - - uid: 2409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-24.5 - parent: 12 - - uid: 2410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-23.5 - parent: 12 - - uid: 2411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-22.5 - parent: 12 - - uid: 2412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 12 - - uid: 2413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 12 - - uid: 2414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-19.5 - parent: 12 - - uid: 2415 - components: - - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -38.5,-19.5 parent: 12 - - uid: 2416 + - uid: 2396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-19.5 + rot: 1.5707963267948966 rad + pos: -39.5,-19.5 parent: 12 - - uid: 2417 + - uid: 2983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-19.5 - parent: 12 - - uid: 2418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 12 - - uid: 2419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 12 - - uid: 2420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 12 - - uid: 2421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-23.5 - parent: 12 - - uid: 2422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-23.5 - parent: 12 - - uid: 2423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-22.5 - parent: 12 - - uid: 2424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 12 - - uid: 2425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-20.5 - parent: 12 - - uid: 2426 - components: - - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -38.5,-23.5 parent: 12 - - uid: 2427 + - uid: 3242 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 12 + - uid: 3591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-24.5 + parent: 12 + - uid: 4105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-22.5 + parent: 12 + - uid: 4107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 12 + - uid: 4108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-22.5 + parent: 12 + - uid: 4110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-23.5 + parent: 12 + - uid: 4111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 12 + - uid: 4787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 12 + - uid: 4910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 12 + - uid: 4915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 12 + - uid: 4957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-23.5 + parent: 12 + - uid: 4967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-20.5 + parent: 12 + - uid: 5078 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -38.5,-22.5 parent: 12 - - uid: 2428 + - uid: 5093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 + rot: 1.5707963267948966 rad + pos: -38.5,-24.5 parent: 12 - - uid: 2429 + - uid: 5150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-20.5 + rot: 1.5707963267948966 rad + pos: -39.5,-24.5 + parent: 12 + - uid: 5314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-23.5 + parent: 12 + - uid: 5371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-22.5 + parent: 12 + - uid: 5401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-24.5 + parent: 12 + - uid: 5430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 parent: 12 - uid: 17127 components: @@ -68953,6 +69836,18 @@ entities: rot: 3.141592653589793 rad pos: 5.5,53.5 parent: 12 + - uid: 26973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 12 + - uid: 26999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 12 - proto: CarpetSBlue entities: - uid: 17124 @@ -69067,6 +69962,12 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,25.5 parent: 12 + - uid: 2090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-41.5 + parent: 12 - uid: 2185 components: - type: Transform @@ -69084,6 +69985,24 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-36.5 parent: 12 + - uid: 2390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-18.5 + parent: 12 + - uid: 2391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-17.5 + parent: 12 + - uid: 2393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-18.5 + parent: 12 - uid: 2463 components: - type: Transform @@ -69100,6 +70019,11 @@ entities: - type: Transform pos: 87.5,-34.5 parent: 12 + - uid: 2670 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 12 - uid: 2675 components: - type: Transform @@ -69419,6 +70343,11 @@ entities: - type: Transform pos: 54.5,10.5 parent: 12 + - uid: 4477 + components: + - type: Transform + pos: -46.5,44.5 + parent: 12 - uid: 4593 components: - type: Transform @@ -69523,12 +70452,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,22.5 parent: 12 - - uid: 5023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,3.5 - parent: 12 - uid: 5041 components: - type: Transform @@ -69541,12 +70464,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-17.5 parent: 12 - - uid: 5097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,1.5 - parent: 12 - uid: 5105 components: - type: Transform @@ -69571,6 +70488,12 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 12 + - uid: 5273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 12 - uid: 5319 components: - type: Transform @@ -69717,6 +70640,18 @@ entities: - type: Transform pos: 9.5,-34.5 parent: 12 + - uid: 6253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-35.5 + parent: 12 + - uid: 6289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-36.5 + parent: 12 - uid: 6498 components: - type: Transform @@ -70215,6 +71150,12 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-58.5 parent: 12 + - uid: 6758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 12 - uid: 7112 components: - type: Transform @@ -70279,6 +71220,18 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-0.5 parent: 12 + - uid: 7276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 12 + - uid: 7482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-18.5 + parent: 12 - uid: 7621 components: - type: Transform @@ -70775,6 +71728,12 @@ entities: - type: Transform pos: 65.5,10.5 parent: 12 + - uid: 8928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 12 - uid: 8937 components: - type: Transform @@ -70971,6 +71930,18 @@ entities: - type: Transform pos: 20.5,11.5 parent: 12 + - uid: 10954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-63.5 + parent: 12 + - uid: 10955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-67.5 + parent: 12 - uid: 10967 components: - type: Transform @@ -70982,6 +71953,12 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 12 + - uid: 11030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-67.5 + parent: 12 - uid: 11049 components: - type: Transform @@ -71049,6 +72026,42 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,68.5 parent: 12 + - uid: 11277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-67.5 + parent: 12 + - uid: 11278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-67.5 + parent: 12 + - uid: 11297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-67.5 + parent: 12 + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-67.5 + parent: 12 + - uid: 11300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-63.5 + parent: 12 + - uid: 11301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-67.5 + parent: 12 - uid: 11303 components: - type: Transform @@ -71080,6 +72093,12 @@ entities: - type: Transform pos: 30.5,8.5 parent: 12 + - uid: 11389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-65.5 + parent: 12 - uid: 11392 components: - type: Transform @@ -71191,6 +72210,12 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,29.5 parent: 12 + - uid: 14175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 12 - uid: 14294 components: - type: Transform @@ -71461,10 +72486,10 @@ entities: - type: Transform pos: 51.5,76.5 parent: 12 - - uid: 15115 + - uid: 15007 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 12 - uid: 15678 @@ -71542,6 +72567,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 12 + - uid: 16870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 12 - uid: 17226 components: - type: Transform @@ -71791,6 +72822,12 @@ entities: - type: Transform pos: -67.5,53.5 parent: 12 + - uid: 19278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 12 - uid: 19559 components: - type: Transform @@ -72147,12 +73184,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-41.5 parent: 12 - - uid: 22110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,0.5 - parent: 12 - uid: 22170 components: - type: Transform @@ -72257,6 +73288,16 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-52.5 parent: 12 + - uid: 23704 + components: + - type: Transform + pos: -42.5,67.5 + parent: 12 + - uid: 23722 + components: + - type: Transform + pos: -43.5,67.5 + parent: 12 - uid: 24144 components: - type: Transform @@ -72879,11 +73920,6 @@ entities: - type: Transform pos: -46.5,45.5 parent: 12 - - uid: 24673 - components: - - type: Transform - pos: -46.5,44.5 - parent: 12 - uid: 24674 components: - type: Transform @@ -73090,12 +74126,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-22.5 parent: 12 - - uid: 26447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,0.5 - parent: 12 - uid: 26452 components: - type: Transform @@ -73144,17 +74174,40 @@ entities: rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 12 + - uid: 26797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 12 + - uid: 26981 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 12 - uid: 27064 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 12 - - uid: 27241 + - uid: 27223 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,4.5 + pos: -56.5,-18.5 + parent: 12 + - uid: 27244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-18.5 + parent: 12 + - uid: 27250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-18.5 parent: 12 - uid: 27317 components: @@ -73162,12 +74215,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 12 - - uid: 27318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-14.5 - parent: 12 - uid: 27319 components: - type: Transform @@ -73186,6 +74233,12 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-13.5 parent: 12 + - uid: 27391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-18.5 + parent: 12 - uid: 27400 components: - type: Transform @@ -73392,121 +74445,11 @@ entities: - type: Transform pos: -58.5,-32.5 parent: 12 - - uid: 27703 - components: - - type: Transform - pos: -58.5,-31.5 - parent: 12 - - uid: 27704 - components: - - type: Transform - pos: -58.5,-30.5 - parent: 12 - - uid: 27705 - components: - - type: Transform - pos: -58.5,-29.5 - parent: 12 - - uid: 27706 - components: - - type: Transform - pos: -58.5,-28.5 - parent: 12 - - uid: 27707 - components: - - type: Transform - pos: -58.5,-27.5 - parent: 12 - - uid: 27708 - components: - - type: Transform - pos: -58.5,-26.5 - parent: 12 - - uid: 27709 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 12 - - uid: 27710 - components: - - type: Transform - pos: -58.5,-23.5 - parent: 12 - - uid: 27711 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 12 - - uid: 27712 - components: - - type: Transform - pos: -58.5,-21.5 - parent: 12 - - uid: 27713 - components: - - type: Transform - pos: -58.5,-20.5 - parent: 12 - - uid: 27714 - components: - - type: Transform - pos: -58.5,-19.5 - parent: 12 - uid: 27715 components: - type: Transform pos: -58.5,-18.5 parent: 12 - - uid: 27716 - components: - - type: Transform - pos: -58.5,-17.5 - parent: 12 - - uid: 27717 - components: - - type: Transform - pos: -58.5,-24.5 - parent: 12 - - uid: 27718 - components: - - type: Transform - pos: -57.5,-17.5 - parent: 12 - - uid: 27719 - components: - - type: Transform - pos: -57.5,-16.5 - parent: 12 - - uid: 27720 - components: - - type: Transform - pos: -56.5,-16.5 - parent: 12 - - uid: 27721 - components: - - type: Transform - pos: -55.5,-16.5 - parent: 12 - - uid: 27722 - components: - - type: Transform - pos: -54.5,-16.5 - parent: 12 - - uid: 27723 - components: - - type: Transform - pos: -53.5,-16.5 - parent: 12 - - uid: 27725 - components: - - type: Transform - pos: -51.5,-16.5 - parent: 12 - - uid: 27726 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 12 - uid: 27727 components: - type: Transform @@ -73895,6 +74838,239 @@ entities: - type: Transform pos: -7.5,-20.5 parent: 12 + - uid: 28641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-37.5 + parent: 12 + - uid: 28642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-38.5 + parent: 12 + - uid: 28643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-39.5 + parent: 12 + - uid: 28644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-40.5 + parent: 12 + - uid: 28645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-41.5 + parent: 12 + - uid: 28647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-41.5 + parent: 12 + - uid: 28651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-41.5 + parent: 12 + - uid: 28652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-41.5 + parent: 12 + - uid: 28672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-41.5 + parent: 12 + - uid: 28674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-41.5 + parent: 12 + - uid: 28677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-41.5 + parent: 12 + - uid: 28678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-41.5 + parent: 12 + - uid: 28681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-42.5 + parent: 12 + - uid: 28682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-43.5 + parent: 12 + - uid: 28688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-44.5 + parent: 12 + - uid: 28689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-45.5 + parent: 12 + - uid: 28690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-46.5 + parent: 12 + - uid: 28691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-47.5 + parent: 12 + - uid: 28692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-48.5 + parent: 12 + - uid: 28693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-49.5 + parent: 12 + - uid: 28694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-51.5 + parent: 12 + - uid: 28704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-50.5 + parent: 12 + - uid: 28705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-52.5 + parent: 12 + - uid: 28706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-53.5 + parent: 12 + - uid: 28707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-54.5 + parent: 12 + - uid: 28710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-52.5 + parent: 12 + - uid: 28718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-53.5 + parent: 12 + - uid: 28719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-54.5 + parent: 12 + - uid: 28720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-55.5 + parent: 12 + - uid: 28721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-56.5 + parent: 12 + - uid: 28722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-56.5 + parent: 12 + - uid: 28737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-56.5 + parent: 12 + - uid: 28738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 12 + - uid: 28743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-56.5 + parent: 12 + - uid: 28751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-57.5 + parent: 12 + - uid: 28761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 12 + - uid: 28762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 12 + - uid: 28784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-42.5 + parent: 12 + - uid: 28828 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 12 - uid: 28922 components: - type: Transform @@ -73918,18 +75094,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 12 - - uid: 29000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - uid: 29004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - uid: 29054 components: - type: Transform @@ -73954,29 +75118,53 @@ entities: rot: 3.141592653589793 rad pos: 18.5,22.5 parent: 12 + - uid: 29080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-67.5 + parent: 12 + - uid: 29081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-66.5 + parent: 12 + - uid: 29082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-62.5 + parent: 12 + - uid: 29085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-64.5 + parent: 12 - uid: 29086 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,0.5 + pos: -33.5,-67.5 parent: 12 - - uid: 29094 + - uid: 29087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,4.5 + pos: -32.5,-67.5 parent: 12 - - uid: 29102 + - uid: 29089 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,2.5 + pos: -34.5,-67.5 parent: 12 - - uid: 29148 + - uid: 29090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,0.5 + pos: -31.5,-67.5 parent: 12 - uid: 29418 components: @@ -73990,6 +75178,119 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,65.5 parent: 12 + - uid: 29428 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 12 + - uid: 29438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-63.5 + parent: 12 + - uid: 29439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-63.5 + parent: 12 + - uid: 29440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-63.5 + parent: 12 + - uid: 29441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-63.5 + parent: 12 + - uid: 29442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-63.5 + parent: 12 + - uid: 29443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-63.5 + parent: 12 + - uid: 29444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-63.5 + parent: 12 + - uid: 29445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-63.5 + parent: 12 + - uid: 29446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-63.5 + parent: 12 + - uid: 29447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-63.5 + parent: 12 + - uid: 29448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-63.5 + parent: 12 + - uid: 29449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-67.5 + parent: 12 + - uid: 29450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-67.5 + parent: 12 + - uid: 29451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-67.5 + parent: 12 + - uid: 29452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-67.5 + parent: 12 + - uid: 29453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-67.5 + parent: 12 + - uid: 29454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-67.5 + parent: 12 + - uid: 29455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-68.5 + parent: 12 - uid: 29562 components: - type: Transform @@ -74312,6 +75613,11 @@ entities: - type: Transform pos: 52.5,68.5 parent: 12 + - uid: 30131 + components: + - type: Transform + pos: -43.5,68.5 + parent: 12 - uid: 30473 components: - type: Transform @@ -74875,11 +76181,66 @@ entities: - type: Transform pos: 31.5,-3.5 parent: 12 - - uid: 6151 + - uid: 5918 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-3.5 + pos: -62.5,-26.5 + parent: 12 + - uid: 5966 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 12 + - uid: 5982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-25.5 + parent: 12 + - uid: 5985 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 12 + - uid: 6020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-27.5 + parent: 12 + - uid: 6187 + components: + - type: Transform + pos: -59.5,-23.5 + parent: 12 + - uid: 6198 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 12 + - uid: 6243 + components: + - type: Transform + pos: -60.5,-23.5 + parent: 12 + - uid: 6245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-27.5 + parent: 12 + - uid: 6250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-22.5 + parent: 12 + - uid: 6251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-25.5 parent: 12 - uid: 6266 components: @@ -74974,12 +76335,22 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-24.5 parent: 12 + - uid: 9664 + components: + - type: Transform + pos: 48.5,1.5 + parent: 12 - uid: 9706 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,36.5 parent: 12 + - uid: 9784 + components: + - type: Transform + pos: 49.5,1.5 + parent: 12 - uid: 9962 components: - type: Transform @@ -75015,6 +76386,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,42.5 parent: 12 + - uid: 11978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-34.5 + parent: 12 - uid: 12020 components: - type: Transform @@ -75039,6 +76416,12 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,27.5 parent: 12 + - uid: 12994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-23.5 + parent: 12 - uid: 13019 components: - type: Transform @@ -75202,6 +76585,12 @@ entities: - type: Transform pos: -42.5,62.5 parent: 12 + - uid: 19619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-10.5 + parent: 12 - uid: 20875 components: - type: Transform @@ -75441,6 +76830,11 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,55.5 parent: 12 + - uid: 22141 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 12 - uid: 22171 components: - type: Transform @@ -75939,18 +77333,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,56.5 parent: 12 - - uid: 25933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,57.5 - parent: 12 - - uid: 25934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,58.5 - parent: 12 - uid: 26001 components: - type: Transform @@ -75997,17 +77379,34 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,70.5 parent: 12 + - uid: 26887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,59.5 + parent: 12 + - uid: 26888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,58.5 + parent: 12 + - uid: 26916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-15.5 + parent: 12 - uid: 28037 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-13.5 parent: 12 - - uid: 28251 + - uid: 28302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-13.5 + pos: -19.5,-68.5 parent: 12 - uid: 28529 components: @@ -76043,6 +77442,18 @@ entities: - type: Transform pos: 56.5,0.5 parent: 12 + - uid: 29026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,67.5 + parent: 12 + - uid: 29027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,67.5 + parent: 12 - uid: 29349 components: - type: Transform @@ -76054,92 +77465,55 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-3.5 parent: 12 - - uid: 29351 + - uid: 29517 components: - type: Transform - pos: 29.5,-7.5 + rot: -1.5707963267948966 rad + pos: -27.5,74.5 parent: 12 - - uid: 29352 + - uid: 29594 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 + rot: -1.5707963267948966 rad + pos: -27.5,73.5 + parent: 12 + - uid: 29609 + components: + - type: Transform + pos: -26.5,78.5 + parent: 12 + - uid: 29755 + components: + - type: Transform + pos: -42.5,73.5 + parent: 12 + - uid: 29782 + components: + - type: Transform + pos: -41.5,73.5 parent: 12 - uid: 29838 components: - type: Transform pos: -38.5,60.5 parent: 12 - - uid: 29972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 12 - uid: 29973 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-12.5 parent: 12 - - uid: 29974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-12.5 - parent: 12 - uid: 31264 components: - type: Transform pos: 1.5,-66.5 parent: 12 - - uid: 31359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-15.5 - parent: 12 - uid: 31596 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,23.5 parent: 12 - - uid: 31667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-26.5 - parent: 12 - - uid: 31668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-25.5 - parent: 12 - - uid: 31670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-23.5 - parent: 12 - - uid: 31671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-22.5 - parent: 12 - - uid: 31672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-25.5 - parent: 12 - - uid: 31673 - components: - - type: Transform - pos: -62.5,-23.5 - parent: 12 - uid: 31817 components: - type: Transform @@ -76448,6 +77822,12 @@ entities: - type: Transform pos: 48.602276,-10.465746 parent: 12 + - uid: 29288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,60.5 + parent: 12 - uid: 30282 components: - type: Transform @@ -76527,6 +77907,12 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,21.5 parent: 12 + - uid: 4780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 12 - uid: 5970 components: - type: Transform @@ -76651,6 +78037,18 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,77.5 parent: 12 + - uid: 28791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-46.5 + parent: 12 + - uid: 28792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-47.5 + parent: 12 - uid: 30323 components: - type: Transform @@ -76659,6 +78057,11 @@ entities: parent: 12 - proto: CheapLighter entities: + - uid: 2044 + components: + - type: Transform + pos: -56.64224,59.774014 + parent: 12 - uid: 13017 components: - type: Transform @@ -76670,11 +78073,6 @@ entities: - type: Transform pos: -25.366394,45.399204 parent: 12 - - uid: 22064 - components: - - type: Transform - pos: -23.224808,54.359283 - parent: 12 - proto: CheapRollerBedSpawnFolded entities: - uid: 13865 @@ -76690,14 +78088,14 @@ entities: - uid: 19379 components: - type: Transform - pos: -47.544018,57.542088 + pos: -47.5615,56.51636 parent: 12 - proto: CheckerBoard entities: - uid: 8729 components: - type: Transform - pos: 51.497044,-38.513325 + pos: 51.79037,-36.868877 parent: 12 - uid: 25500 components: @@ -76881,6 +78279,20 @@ entities: - type: Transform pos: 31.640083,27.649036 parent: 12 +- proto: CigCartonMixed + entities: + - uid: 28906 + components: + - type: Transform + pos: 46.470013,-36.518024 + parent: 12 +- proto: CigPackBlack + entities: + - uid: 29176 + components: + - type: Transform + pos: -56.756435,59.391033 + parent: 12 - proto: CigPackBlue entities: - uid: 30152 @@ -76977,16 +78389,16 @@ entities: - type: Transform pos: -52.5,-34.5 parent: 12 + - uid: 28303 + components: + - type: Transform + pos: -19.5,-64.5 + parent: 12 - uid: 31367 components: - type: Transform pos: -26.5,-55.5 parent: 12 - - uid: 31442 - components: - - type: Transform - pos: -17.5,-64.5 - parent: 12 - uid: 31443 components: - type: Transform @@ -76994,10 +78406,10 @@ entities: parent: 12 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1276 + - uid: 2381 components: - type: Transform - pos: 35.5,-43.5 + pos: -60.5,-19.5 parent: 12 - uid: 4140 components: @@ -77009,10 +78421,15 @@ entities: - type: Transform pos: -13.5,-19.5 parent: 12 - - uid: 9567 + - uid: 6290 components: - type: Transform - pos: 16.5,12.5 + pos: 59.5,-39.5 + parent: 12 + - uid: 9233 + components: + - type: Transform + pos: 30.5,-55.5 parent: 12 - uid: 9819 components: @@ -77169,16 +78586,26 @@ entities: - type: Transform pos: -0.5,10.5 parent: 12 - - uid: 26205 + - uid: 26246 components: - type: Transform - pos: 1.5,-23.5 + pos: 13.5,-55.5 + parent: 12 + - uid: 26473 + components: + - type: Transform + pos: -6.5,-14.5 parent: 12 - uid: 26682 components: - type: Transform pos: 14.5,7.5 parent: 12 + - uid: 26728 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 12 - uid: 27016 components: - type: Transform @@ -77189,11 +78616,21 @@ entities: - type: Transform pos: -29.5,60.5 parent: 12 + - uid: 27711 + components: + - type: Transform + pos: -51.5,65.5 + parent: 12 - uid: 27862 components: - type: Transform pos: 27.5,16.5 parent: 12 + - uid: 28824 + components: + - type: Transform + pos: 39.5,-42.5 + parent: 12 - uid: 28840 components: - type: Transform @@ -77222,6 +78659,11 @@ entities: - 0 - 0 - 0 + - uid: 29648 + components: + - type: Transform + pos: -43.5,72.5 + parent: 12 - uid: 30464 components: - type: Transform @@ -77232,18 +78674,8 @@ entities: - type: Transform pos: 44.5,-18.5 parent: 12 - - uid: 31695 - components: - - type: Transform - pos: -61.5,-18.5 - parent: 12 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 6198 - components: - - type: Transform - pos: 35.5,-42.5 - parent: 12 - uid: 14957 components: - type: Transform @@ -77289,10 +78721,20 @@ entities: - type: Transform pos: 41.5,59.5 parent: 12 - - uid: 28947 + - uid: 26683 components: - type: Transform - pos: 4.5,-23.5 + pos: -6.5,-15.5 + parent: 12 + - uid: 28830 + components: + - type: Transform + pos: 38.5,-42.5 + parent: 12 + - uid: 29145 + components: + - type: Transform + pos: -51.5,64.5 parent: 12 - uid: 31273 components: @@ -77326,10 +78768,10 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 9212 + - uid: 6278 components: - type: Transform - pos: 47.5,-36.5 + pos: 48.5,-36.5 parent: 12 - uid: 12023 components: @@ -77361,11 +78803,6 @@ entities: - type: Transform pos: 52.5,52.5 parent: 12 - - uid: 24223 - components: - - type: Transform - pos: 46.5,60.5 - parent: 12 - uid: 24236 components: - type: Transform @@ -77451,15 +78888,20 @@ entities: - type: Transform pos: -45.5,30.5 parent: 12 + - uid: 26796 + components: + - type: Transform + pos: 45.5,60.5 + parent: 12 - uid: 27833 components: - type: Transform pos: -52.5,-35.5 parent: 12 - - uid: 28285 + - uid: 29654 components: - type: Transform - pos: -52.5,-19.5 + pos: -43.5,71.5 parent: 12 - uid: 30472 components: @@ -77476,11 +78918,6 @@ entities: - type: Transform pos: -26.5,-56.5 parent: 12 - - uid: 31441 - components: - - type: Transform - pos: -17.5,-65.5 - parent: 12 - uid: 31444 components: - type: Transform @@ -77624,6 +79061,11 @@ entities: - type: Transform pos: -42.5,-53.5 parent: 12 + - uid: 2148 + components: + - type: Transform + pos: -51.5,57.5 + parent: 12 - uid: 2973 components: - type: Transform @@ -77634,16 +79076,6 @@ entities: - type: Transform pos: -12.5,-3.5 parent: 12 - - uid: 5817 - components: - - type: Transform - pos: -48.5,52.5 - parent: 12 - - uid: 6291 - components: - - type: Transform - pos: 35.5,-41.5 - parent: 12 - uid: 7012 components: - type: Transform @@ -77683,11 +79115,6 @@ entities: - type: Transform pos: 37.5,-23.5 parent: 12 - - uid: 9255 - components: - - type: Transform - pos: -56.5,-32.5 - parent: 12 - uid: 9996 components: - type: Transform @@ -77718,16 +79145,16 @@ entities: - type: Transform pos: 36.5,10.5 parent: 12 + - uid: 12057 + components: + - type: Transform + pos: -45.5,66.5 + parent: 12 - uid: 12058 components: - type: Transform pos: 40.5,12.5 parent: 12 - - uid: 12113 - components: - - type: Transform - pos: -52.5,56.5 - parent: 12 - uid: 12246 components: - type: Transform @@ -77753,11 +79180,6 @@ entities: - type: Transform pos: -27.5,21.5 parent: 12 - - uid: 21760 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 12 - uid: 22123 components: - type: Transform @@ -77833,16 +79255,36 @@ entities: - type: Transform pos: 34.5,-35.5 parent: 12 - - uid: 25330 - components: - - type: Transform - pos: 48.5,-36.5 - parent: 12 - uid: 25364 components: - type: Transform pos: 4.5,64.5 parent: 12 + - uid: 26634 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 12 + - uid: 26784 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 12 + - uid: 26786 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 12 + - uid: 27020 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 12 + - uid: 27236 + components: + - type: Transform + pos: 48.5,-37.5 + parent: 12 - uid: 27327 components: - type: Transform @@ -77874,26 +79316,61 @@ entities: showEnts: False occludes: True ent: null + - uid: 28634 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 12 + - uid: 28639 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 12 - uid: 28654 components: - type: Transform pos: -7.5,3.5 parent: 12 + - uid: 28708 + components: + - type: Transform + pos: 33.5,-55.5 + parent: 12 - uid: 28839 components: - type: Transform pos: 29.5,8.5 parent: 12 - - uid: 29165 + - uid: 28870 components: - type: Transform - pos: -2.5,-23.5 + pos: 41.5,-42.5 parent: 12 - uid: 29638 components: - type: Transform pos: -49.5,47.5 parent: 12 + - uid: 29647 + components: + - type: Transform + pos: -30.5,75.5 + parent: 12 + - uid: 29824 + components: + - type: Transform + pos: -43.5,69.5 + parent: 12 + - uid: 29989 + components: + - type: Transform + pos: -52.5,52.5 + parent: 12 + - uid: 29995 + components: + - type: Transform + pos: -39.5,74.5 + parent: 12 - uid: 30471 components: - type: Transform @@ -77921,15 +79398,10 @@ entities: - type: Transform pos: -33.5,-39.5 parent: 12 - - uid: 6771 + - uid: 13002 components: - type: Transform - pos: 29.5,-6.5 - parent: 12 - - uid: 17199 - components: - - type: Transform - pos: -54.5,-30.5 + pos: -54.5,-32.5 parent: 12 - uid: 22041 components: @@ -78025,11 +79497,6 @@ entities: - type: Transform pos: -26.5,52.5 parent: 12 - - uid: 23712 - components: - - type: Transform - pos: -54.5,63.5 - parent: 12 - uid: 25358 components: - type: Transform @@ -78043,11 +79510,6 @@ entities: - type: Transform pos: -27.5,49.5 parent: 12 - - uid: 23760 - components: - - type: Transform - pos: -52.5,63.5 - parent: 12 - uid: 25345 components: - type: Transform @@ -78128,7 +79590,8 @@ entities: - uid: 25378 components: - type: Transform - pos: 11.527891,-16.45502 + rot: -100.53096491487331 rad + pos: 9.531616,-13.506657 parent: 12 - proto: ClothingBeltUtilityFilled entities: @@ -78276,23 +79739,39 @@ entities: - type: Transform pos: 33.68242,-17.632181 parent: 12 - - uid: 5909 - components: - - type: Transform - pos: 33.729294,-18.522806 - parent: 12 - uid: 9236 components: - type: Transform - pos: 42.52788,-37.64374 + pos: 41.51222,-38.624264 + parent: 12 + - uid: 19204 + components: + - type: Transform + pos: 21.5,-23.5 parent: 12 - uid: 23685 components: - type: Transform pos: 48.481655,51.562435 parent: 12 + - uid: 29311 + components: + - type: MetaData + desc: They seem to just be regular insulated gloves. These gloves will protect the wearer from electric shocks. + name: holy relic + - type: Transform + rot: -12.566370614359172 rad + pos: -37.51887,78.52481 + parent: 12 - proto: ClothingHandsGlovesLatex entities: + - uid: 9488 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13266 components: - type: Transform @@ -78420,6 +79899,14 @@ entities: - type: Transform pos: 42.777477,-19.21 parent: 12 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 29181 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -55.470665,63.704964 + parent: 12 - proto: ClothingHeadHatGladiator entities: - uid: 31203 @@ -78442,6 +79929,13 @@ entities: rot: -6.283185307179586 rad pos: -16.4813,60.833267 parent: 12 +- proto: ClothingHeadHatPirateTricord + entities: + - uid: 28831 + components: + - type: Transform + pos: 36.49667,-52.277916 + parent: 12 - proto: ClothingHeadHatPwig entities: - uid: 22378 @@ -78449,8 +79943,22 @@ entities: - type: Transform pos: -15.479212,51.570213 parent: 12 +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 5726 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -22.27849,52.449715 + parent: 12 - proto: ClothingHeadHatTophat entities: + - uid: 5053 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -39.400192,-15.16795 + parent: 12 - uid: 23553 components: - type: Transform @@ -78462,15 +79970,20 @@ entities: - uid: 30941 components: - type: Transform - pos: 4.3314962,-59.50384 + pos: 5.4417367,-60.162846 parent: 12 - uid: 31184 components: - type: Transform - pos: 4.665799,-60.034203 + pos: 5.6500697,-60.402912 parent: 12 - proto: ClothingHeadHatWelding entities: + - uid: 5503 + components: + - type: Transform + pos: 40.49897,3.5981612 + parent: 12 - uid: 6745 components: - type: Transform @@ -78544,8 +80057,7 @@ entities: - uid: 32167 components: - type: Transform - rot: -125.66370614359157 rad - pos: -62.594955,-52.33298 + pos: -61.5426,-52.550335 parent: 12 - proto: ClothingHeadHelmetRiot entities: @@ -78644,7 +80156,8 @@ entities: - uid: 31358 components: - type: Transform - pos: -34.50593,-15.354567 + rot: -31.415926535897945 rad + pos: -34.346054,-15.604868 parent: 12 - proto: ClothingMaskGas entities: @@ -78661,6 +80174,11 @@ entities: rot: -6.283185307179586 rad pos: 42.37392,63.744247 parent: 12 + - uid: 29502 + components: + - type: Transform + pos: -35.515575,77.54999 + parent: 12 - proto: ClothingMaskGasAtmos entities: - uid: 27188 @@ -78669,6 +80187,13 @@ entities: rot: -25.132741228718352 rad pos: 17.825888,-13.641907 parent: 12 +- proto: ClothingMaskMuzzle + entities: + - uid: 26829 + components: + - type: Transform + pos: -24.5,53.5 + parent: 12 - proto: ClothingMaskSterile entities: - uid: 8888 @@ -78676,6 +80201,13 @@ entities: - type: Transform pos: -12.50767,-45.32497 parent: 12 + - uid: 9503 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13276 components: - type: Transform @@ -78731,7 +80263,8 @@ entities: - uid: 29599 components: - type: Transform - pos: -43.44968,72.43989 + rot: -6.283185307179586 rad + pos: -50.5738,76.70312 parent: 12 - proto: ClothingNeckScarfStripedBlue entities: @@ -78773,6 +80306,21 @@ entities: actions: !type:Container ents: - 4711 +- proto: ClothingNeckTieDet + entities: + - uid: 29309 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.762493,61.658695 + parent: 12 +- proto: ClothingOuterApronBar + entities: + - uid: 19822 + components: + - type: Transform + pos: 38.296032,-30.817263 + parent: 12 - proto: ClothingOuterApronBotanist entities: - uid: 21363 @@ -78910,6 +80458,13 @@ entities: - type: Transform pos: -4.4779925,21.516867 parent: 12 +- proto: ClothingOuterCoatTrench + entities: + - uid: 1523 + components: + - type: Transform + pos: -54.5,60.5 + parent: 12 - proto: ClothingOuterFlannelBlue entities: - uid: 30219 @@ -78929,8 +80484,7 @@ entities: - uid: 32142 components: - type: Transform - rot: -125.66370614359157 rad - pos: -62.331066,-52.62485 + pos: -62.521767,-52.550335 parent: 12 - proto: ClothingOuterHoodieBlack entities: @@ -78985,11 +80539,6 @@ entities: parent: 12 - proto: ClothingOuterSuitEmergency entities: - - uid: 2683 - components: - - type: Transform - pos: -17.312998,-67.46378 - parent: 12 - uid: 10386 components: - type: Transform @@ -79082,22 +80631,26 @@ entities: - uid: 836 components: - type: Transform - pos: -43.654907,69.632965 + rot: -6.283185307179586 rad + pos: -51.46078,67.59943 parent: 12 - uid: 1836 components: - type: Transform - pos: -43.72829,70.59985 + rot: -12.566370614359172 rad + pos: -45.59967,73.321205 parent: 12 - uid: 25439 components: - type: Transform - pos: -43.55706,69.76759 + rot: -6.283185307179586 rad + pos: -50.495502,67.57858 parent: 12 - uid: 29215 components: - type: Transform - pos: -43.603027,70.68353 + rot: -12.566370614359172 rad + pos: -45.342724,73.68256 parent: 12 - proto: ClothingShoesTourist entities: @@ -79186,6 +80739,22 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitColorOrange + entities: + - uid: 1878 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -54.02698,57.18202 + parent: 12 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 29094 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.392857,61.517265 + parent: 12 - proto: ClothingUniformJumpsuitGladiator entities: - uid: 31205 @@ -79232,6 +80801,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 28865 + components: + - type: Transform + pos: 36.521133,-52.661407 + parent: 12 - proto: ClothingUniformJumpsuitPyjamaSyndicateRed entities: - uid: 28255 @@ -79259,12 +80835,6 @@ entities: parent: 12 - proto: Cobweb1 entities: - - uid: 4897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-41.5 - parent: 12 - uid: 4899 components: - type: Transform @@ -79407,18 +80977,18 @@ entities: - type: Transform pos: 42.5,64.5 parent: 12 - - uid: 25038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,58.5 - parent: 12 - uid: 25835 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 12 + - uid: 28785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-44.5 + parent: 12 - uid: 30201 components: - type: Transform @@ -79509,11 +81079,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,65.5 parent: 12 - - uid: 30196 - components: - - type: Transform - pos: -22.5,53.5 - parent: 12 - proto: ComfyChair entities: - uid: 887 @@ -79549,6 +81114,12 @@ entities: - type: Transform pos: -23.5,-55.5 parent: 12 + - uid: 4113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 12 - uid: 12236 components: - type: Transform @@ -79727,10 +81298,11 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-20.5 parent: 12 - - uid: 4012 + - uid: 4785 components: - type: Transform - pos: 17.5,-15.5 + rot: -1.5707963267948966 rad + pos: 18.5,-15.5 parent: 12 - uid: 29966 components: @@ -80025,11 +81597,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,27.5 parent: 12 - - uid: 4732 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 12 - uid: 5474 components: - type: Transform @@ -80058,6 +81625,12 @@ entities: - type: Transform pos: -6.5,36.5 parent: 12 + - uid: 25831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 12 - proto: ComputerRadar entities: - uid: 2447 @@ -80066,11 +81639,6 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-34.5 parent: 12 - - uid: 2491 - components: - - type: Transform - pos: 59.5,-39.5 - parent: 12 - uid: 3915 components: - type: Transform @@ -80094,6 +81662,12 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,-8.5 parent: 12 + - uid: 26947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-36.5 + parent: 12 - proto: ComputerResearchAndDevelopment entities: - uid: 784 @@ -80190,6 +81764,12 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-5.5 parent: 12 + - uid: 27125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-69.5 + parent: 12 - uid: 31765 components: - type: Transform @@ -80258,6 +81838,12 @@ entities: - type: Transform pos: 21.5,59.5 parent: 12 + - uid: 28975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,60.5 + parent: 12 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 17952 @@ -80342,6 +81928,11 @@ entities: - type: Transform pos: -7.5,63.5 parent: 12 + - uid: 29302 + components: + - type: Transform + pos: -53.5,63.5 + parent: 12 - uid: 30262 components: - type: Transform @@ -80865,6 +82456,52 @@ entities: rot: 3.141592653589793 rad pos: 39.5,15.5 parent: 12 + - uid: 22952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,75.5 + parent: 12 + - uid: 23122 + components: + - type: Transform + pos: -27.5,77.5 + parent: 12 + - uid: 23177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,76.5 + parent: 12 + - uid: 23700 + components: + - type: Transform + pos: -27.5,76.5 + parent: 12 + - uid: 27040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,77.5 + parent: 12 + - uid: 27329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,75.5 + parent: 12 + - uid: 27498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,77.5 + parent: 12 + - uid: 27716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,75.5 + parent: 12 - proto: ConveyorBeltAssembly entities: - uid: 6163 @@ -80963,6 +82600,11 @@ entities: - 0 - 0 - 0 + - uid: 22064 + components: + - type: Transform + pos: 47.5,60.5 + parent: 12 - proto: CrateBaseSecure entities: - uid: 6770 @@ -81043,13 +82685,6 @@ entities: - type: Transform pos: -8.5,13.5 parent: 12 -- proto: CrateEmergencyRadiation - entities: - - uid: 5983 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 12 - proto: CrateEmptySpawner entities: - uid: 436 @@ -81120,17 +82755,17 @@ entities: ent: null - proto: CrateEngineeringAMEJar entities: - - uid: 29395 + - uid: 773 components: - type: Transform - pos: 33.5,4.5 + pos: 40.5,4.5 parent: 12 - proto: CrateEngineeringAMEShielding entities: - - uid: 29355 + - uid: 1357 components: - type: Transform - pos: 33.5,0.5 + pos: 34.5,2.5 parent: 12 - proto: CrateEngineeringElectricalSupplies entities: @@ -81170,8 +82805,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -81188,9 +82823,9 @@ entities: showEnts: False occludes: True ents: - - 2920 - - 2923 - 2929 + - 2923 + - 2920 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -81202,6 +82837,48 @@ entities: - type: Transform pos: 57.5,12.5 parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5886 + - 5885 + - 4887 + - 4851 + - 5888 + - 6298 + - 6299 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringTeslaCoil + entities: + - uid: 24085 + components: + - type: Transform + pos: 62.5,12.5 + parent: 12 - type: EntityStorage air: volume: 200 @@ -81226,9 +82903,51 @@ entities: showEnts: False occludes: True ents: - - 5888 - - 5886 - - 5885 + - 24193 + - 24218 + - 24223 + - 24224 + - 24225 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringTeslaGroundingRod + entities: + - uid: 24702 + components: + - type: Transform + pos: 61.5,12.5 + parent: 12 + - 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: + - 25027 + - 25038 + - 25101 + - 25104 + - 25195 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -81705,11 +83424,23 @@ entities: - type: Transform pos: -28.283596,23.347982 parent: 12 + - uid: 30176 + components: + - type: Transform + pos: -42.437584,42.39632 + parent: 12 - uid: 31702 components: - type: Transform pos: -60.47375,-25.60259 parent: 12 +- proto: CrowbarRed + entities: + - uid: 29500 + components: + - type: Transform + pos: -36.524837,76.4381 + parent: 12 - proto: CryogenicSleepUnit entities: - uid: 21356 @@ -81868,6 +83599,11 @@ entities: parent: 12 - proto: d6Dice entities: + - uid: 929 + components: + - type: Transform + pos: 36.674004,-46.37224 + parent: 12 - uid: 22659 components: - type: Transform @@ -81971,6 +83707,16 @@ entities: text: Pool - type: WarpPoint location: Pool + - uid: 26754 + components: + - type: Transform + pos: 47.5,59.5 + parent: 12 + - type: NavMapBeacon + color: '#D381C993' + text: Science checkpoint + - type: WarpPoint + location: Science checkpoint - proto: DefaultStationBeaconAI entities: - uid: 115 @@ -81987,10 +83733,10 @@ entities: parent: 12 - proto: DefaultStationBeaconAME entities: - - uid: 5966 + - uid: 2411 components: - type: Transform - pos: 36.5,2.5 + pos: 37.5,3.5 parent: 12 - proto: DefaultStationBeaconAnomalyGenerator entities: @@ -82148,11 +83894,6 @@ entities: parent: 12 - proto: DefaultStationBeaconEscapePod entities: - - uid: 509 - components: - - type: Transform - pos: -52.5,57.5 - parent: 12 - uid: 627 components: - type: Transform @@ -82284,10 +84025,10 @@ entities: parent: 12 - proto: DefaultStationBeaconPowerBank entities: - - uid: 8968 + - uid: 4476 components: - type: Transform - pos: 13.5,-16.5 + pos: 13.5,-15.5 parent: 12 - proto: DefaultStationBeaconQMRoom entities: @@ -82380,6 +84121,11 @@ entities: - type: Transform pos: -51.5,46.5 parent: 12 + - uid: 27449 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 12 - uid: 31018 components: - type: Transform @@ -82408,10 +84154,10 @@ entities: parent: 12 - proto: DefaultStationBeaconTEG entities: - - uid: 26552 + - uid: 4013 components: - type: Transform - pos: 11.5,14.5 + pos: 7.5,15.5 parent: 12 - proto: DefaultStationBeaconTelecoms entities: @@ -82587,6 +84333,12 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 12 + - uid: 2423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 12 - uid: 2900 components: - type: Transform @@ -82725,11 +84477,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-47.5 parent: 12 - - uid: 5131 - components: - - type: Transform - pos: -23.5,53.5 - parent: 12 - uid: 5173 components: - type: Transform @@ -82769,6 +84516,18 @@ entities: - type: Transform pos: -7.5,-51.5 parent: 12 + - uid: 6313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 12 + - uid: 6315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,62.5 + parent: 12 - uid: 6864 components: - type: Transform @@ -82787,6 +84546,12 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-37.5 parent: 12 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,62.5 + parent: 12 - uid: 7510 components: - type: Transform @@ -82821,12 +84586,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-40.5 parent: 12 - - uid: 8423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-40.5 - parent: 12 - uid: 8474 components: - type: Transform @@ -82851,12 +84610,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,21.5 parent: 12 - - uid: 9084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 12 - uid: 9457 components: - type: Transform @@ -83259,12 +85012,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,28.5 parent: 12 - - uid: 17773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-30.5 - parent: 12 - uid: 18671 components: - type: Transform @@ -83763,12 +85510,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,12.5 parent: 12 - - uid: 28998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 12 - uid: 29033 components: - type: Transform @@ -83926,18 +85667,6 @@ entities: - type: Transform pos: 52.5,46.5 parent: 12 - - uid: 32109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,63.5 - parent: 12 - - uid: 32112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,63.5 - parent: 12 - proto: DisposalJunction entities: - uid: 1900 @@ -83981,6 +85710,12 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 12 + - uid: 5186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 12 - uid: 5810 components: - type: Transform @@ -84168,6 +85903,12 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-27.5 parent: 12 + - uid: 5190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-16.5 + parent: 12 - uid: 5892 components: - type: Transform @@ -85274,12 +87015,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-11.5 parent: 12 - - uid: 4695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,53.5 - parent: 12 - uid: 4697 components: - type: Transform @@ -85398,6 +87133,18 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-5.5 parent: 12 + - uid: 5131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 12 + - uid: 5304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-15.5 + parent: 12 - uid: 5323 components: - type: Transform @@ -85532,12 +87279,29 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-21.5 parent: 12 + - uid: 6303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 12 + - uid: 6323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-40.5 + parent: 12 - uid: 6719 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 12 + - uid: 6743 + components: + - type: Transform + pos: 54.5,63.5 + parent: 12 - uid: 6765 components: - type: Transform @@ -85706,6 +87470,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-26.5 parent: 12 + - uid: 7300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,62.5 + parent: 12 - uid: 7305 components: - type: Transform @@ -85724,6 +87494,12 @@ entities: rot: 3.141592653589793 rad pos: -39.5,51.5 parent: 12 + - uid: 7423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,62.5 + parent: 12 - uid: 7469 components: - type: Transform @@ -86855,12 +88631,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,10.5 parent: 12 - - uid: 10874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 12 - uid: 10875 components: - type: Transform @@ -89694,12 +91464,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-26.5 parent: 12 - - uid: 22107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 12 - uid: 22108 components: - type: Transform @@ -91804,12 +93568,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-1.5 parent: 12 - - uid: 28999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-1.5 - parent: 12 - uid: 29016 components: - type: Transform @@ -91991,12 +93749,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 12 - - uid: 29368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 12 - uid: 29369 components: - type: Transform @@ -92635,31 +94387,8 @@ entities: - type: Transform pos: 57.5,49.5 parent: 12 - - uid: 32107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,63.5 - parent: 12 - - uid: 32113 - components: - - type: Transform - pos: 51.5,62.5 - parent: 12 - - uid: 32114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,63.5 - parent: 12 - proto: DisposalPipeBroken entities: - - uid: 2704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-31.5 - parent: 12 - uid: 4901 components: - type: Transform @@ -92795,12 +94524,6 @@ entities: - type: Transform pos: -27.5,-18.5 parent: 12 - - uid: 2031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-30.5 - parent: 12 - uid: 3387 components: - type: Transform @@ -92858,18 +94581,6 @@ entities: - type: Transform pos: 43.5,39.5 parent: 12 - - uid: 4709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,52.5 - parent: 12 - - uid: 5067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,53.5 - parent: 12 - uid: 5209 components: - type: Transform @@ -92882,6 +94593,12 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-11.5 parent: 12 + - uid: 6328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-40.5 + parent: 12 - uid: 6847 components: - type: Transform @@ -92929,11 +94646,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-37.5 parent: 12 - - uid: 8351 - components: - - type: Transform - pos: 58.5,-39.5 - parent: 12 - uid: 8831 components: - type: Transform @@ -92970,11 +94682,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-23.5 parent: 12 - - uid: 9773 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 12 - uid: 10413 components: - type: Transform @@ -93142,6 +94849,11 @@ entities: - type: Transform pos: -14.5,45.5 parent: 12 + - uid: 22158 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 22414 components: - type: Transform @@ -93370,21 +95082,11 @@ entities: - type: Transform pos: 8.5,-52.5 parent: 12 - - uid: 4613 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 12 - uid: 4669 components: - type: Transform pos: 35.5,-23.5 parent: 12 - - uid: 4708 - components: - - type: Transform - pos: -23.5,52.5 - parent: 12 - uid: 5110 components: - type: Transform @@ -93410,11 +95112,6 @@ entities: - type: Transform pos: 55.5,6.5 parent: 12 - - uid: 8346 - components: - - type: Transform - pos: 58.5,-39.5 - parent: 12 - uid: 8347 components: - type: Transform @@ -93467,6 +95164,11 @@ entities: - type: Transform pos: 47.5,17.5 parent: 12 + - uid: 12697 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 12703 components: - type: Transform @@ -93617,6 +95319,11 @@ entities: - type: Transform pos: -38.5,50.5 parent: 12 + - uid: 26927 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 12 - uid: 29391 components: - type: Transform @@ -93651,12 +95358,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-31.5 parent: 12 - - uid: 9784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 12 - uid: 13964 components: - type: Transform @@ -93741,6 +95442,14 @@ entities: - type: Transform pos: -22.413641,-10.548397 parent: 12 +- proto: DoorElectronicsMaintenance + entities: + - uid: 8428 + components: + - type: Transform + rot: -43.98229715025713 rad + pos: 56.495026,-7.6256537 + parent: 12 - proto: DoubleEmergencyNitrogenTankFilled entities: - uid: 16510 @@ -93811,6 +95520,23 @@ entities: - type: Transform pos: -36.5,-19.5 parent: 12 +- proto: Drill + entities: + - uid: 5618 + components: + - type: Transform + pos: -4.3746023,-32.230583 + parent: 12 + - uid: 22072 + components: + - type: Transform + pos: -23.010513,52.69631 + parent: 12 + - uid: 26825 + components: + - type: Transform + pos: -5.369359,-38.283527 + parent: 12 - proto: DrinkBeerBottleFull entities: - uid: 21456 @@ -93946,20 +95672,32 @@ entities: parent: 12 - proto: DrinkGlass entities: + - uid: 5365 + components: + - type: Transform + pos: 38.69985,-31.605726 + parent: 12 + - uid: 5434 + components: + - type: Transform + pos: 38.520466,-31.39358 + parent: 12 - uid: 7306 components: - type: Transform - pos: -55.469055,-13.652544 + rot: -43.98229715025713 rad + pos: -57.251377,-13.417505 parent: 12 - uid: 8343 components: - type: Transform - pos: -55.744446,-13.579161 + rot: -43.98229715025713 rad + pos: -57.626377,-13.21438 parent: 12 - - uid: 10602 + - uid: 11435 components: - type: Transform - pos: -55.19366,-13.542469 + pos: 38.313904,-31.611166 parent: 12 - uid: 17626 components: @@ -94043,6 +95781,14 @@ entities: - type: Transform pos: 54.260303,17.501846 parent: 12 +- proto: DrinkHoochGlass + entities: + - uid: 26959 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: -55.403515,-12.701015 + parent: 12 - proto: DrinkHotCoffee entities: - uid: 3804 @@ -94073,8 +95819,7 @@ entities: - uid: 8908 components: - type: Transform - rot: -37.69911184307754 rad - pos: 55.649223,-33.80984 + pos: 55.37848,-34.243008 parent: 12 - uid: 8911 components: @@ -94150,8 +95895,29 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: DrinkIceCreamGlass + entities: + - uid: 11795 + components: + - type: Transform + rot: -106.81415022205287 rad + pos: 35.761303,-30.34728 + parent: 12 +- proto: DrinkIcedTeaGlass + entities: + - uid: 19267 + components: + - type: Transform + rot: -94.24777960769374 rad + pos: 35.519463,-30.544924 + parent: 12 - proto: DrinkJar entities: + - uid: 10001 + components: + - type: Transform + pos: -59.470123,-16.35501 + parent: 12 - uid: 22881 components: - type: Transform @@ -94162,6 +95928,14 @@ entities: - type: Transform pos: 30.54954,56.766605 parent: 12 +- proto: DrinkLemonadeGlass + entities: + - uid: 19203 + components: + - type: Transform + rot: -94.24777960769374 rad + pos: 35.28798,-30.34108 + parent: 12 - proto: DrinkMilkCarton entities: - uid: 21399 @@ -94177,22 +95951,11 @@ entities: parent: 12 - proto: DrinkMopwataBottleRandom entities: - - uid: 2120 + - uid: 9720 components: - type: Transform - pos: 34.4878,-30.348785 - parent: 12 - - uid: 25532 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 38.32821,-31.26264 - parent: 12 - - uid: 25534 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 38.66251,-31.572699 + rot: -31.415926535897945 rad + pos: -39.55718,-16.449203 parent: 12 - proto: DrinkMugBlue entities: @@ -94244,7 +96007,7 @@ entities: - uid: 8907 components: - type: Transform - pos: 55.313694,-34.01245 + pos: 55.305096,-34.53654 parent: 12 - uid: 20832 components: @@ -94293,6 +96056,13 @@ entities: - type: Transform pos: -35.56558,-20.24829 parent: 12 +- proto: DrinkTequilaBottleFull + entities: + - uid: 288 + components: + - type: Transform + pos: -56.342857,59.59179 + parent: 12 - proto: DrinkWhiskeyBottleFull entities: - uid: 13631 @@ -94361,6 +96131,12 @@ entities: - type: Transform pos: 12.175709,56.95935 parent: 12 + - uid: 28420 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: -39.284416,-16.399513 + parent: 12 - proto: Dropper entities: - uid: 13845 @@ -94424,6 +96200,12 @@ entities: - type: Transform pos: 60.5,12.5 parent: 12 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-28.5 + parent: 12 - uid: 274 components: - type: Transform @@ -94454,12 +96236,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-7.5 parent: 12 - - uid: 5982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 12 - uid: 8887 components: - type: Transform @@ -94669,12 +96445,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-33.5 parent: 12 - - uid: 10557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-43.5 - parent: 12 - uid: 10558 components: - type: Transform @@ -94692,12 +96462,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-32.5 parent: 12 - - uid: 10561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-28.5 - parent: 12 - uid: 10562 components: - type: Transform @@ -94722,12 +96486,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,24.5 parent: 12 - - uid: 12999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-2.5 - parent: 12 - uid: 13527 components: - type: Transform @@ -94769,6 +96527,12 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,30.5 parent: 12 + - uid: 16525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-43.5 + parent: 12 - uid: 16666 components: - type: Transform @@ -94845,6 +96609,17 @@ entities: - type: Transform pos: -50.5,26.5 parent: 12 + - uid: 18559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 12 + - uid: 18630 + components: + - type: Transform + pos: 36.5,4.5 + parent: 12 - uid: 21240 components: - type: Transform @@ -95052,10 +96827,11 @@ entities: - type: Transform pos: -32.5,30.5 parent: 12 - - uid: 22336 + - uid: 23940 components: - type: Transform - pos: 47.5,-0.5 + rot: 3.141592653589793 rad + pos: 46.5,-1.5 parent: 12 - uid: 25296 components: @@ -95282,12 +97058,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 12 - - uid: 31890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 12 - uid: 32037 components: - type: Transform @@ -95299,8 +97069,17 @@ entities: - uid: 31675 components: - type: Transform - pos: -62.500305,-24.414648 + rot: -37.69911184307754 rad + pos: -59.610268,-21.437107 parent: 12 + - type: GasTank + toggleActionEntity: 6678 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6678 - proto: EmergencyRollerBed entities: - uid: 2511 @@ -95315,6 +97094,20 @@ entities: parent: 12 - proto: EmitterFlatpack entities: + - uid: 4851 + components: + - type: Transform + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4887 + components: + - type: Transform + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 5885 components: - type: Transform @@ -95336,6 +97129,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 6298 + components: + - type: Transform + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6299 + components: + - type: Transform + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EncryptionKeyCommon entities: - uid: 22253 @@ -95371,41 +97178,22 @@ entities: - type: Transform pos: -25.5,-31.5 parent: 12 -- proto: ExtendedEmergencyNitrogenTankFilled - entities: - - uid: 2681 - components: - - type: Transform - pos: -17.667685,-67.53716 - parent: 12 - - type: GasTank - toggleActionEntity: 9079 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 9079 - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 2680 - components: - - type: Transform - pos: -17.74107,-67.10909 - parent: 12 - - type: GasTank - toggleActionEntity: 9083 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 9083 - uid: 31364 components: - type: Transform - pos: -34.3601,-15.681181 + rot: -31.415926535897945 rad + pos: -34.689804,-15.469358 parent: 12 + - type: GasTank + toggleActionEntity: 6679 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6679 - proto: ExtinguisherCabinetFilled entities: - uid: 2106 @@ -95436,11 +97224,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,31.5 parent: 12 - - uid: 7229 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 12 - uid: 9238 components: - type: Transform @@ -95468,6 +97251,12 @@ entities: - type: Transform pos: 39.5,12.5 parent: 12 + - uid: 25680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-45.5 + parent: 12 - uid: 26003 components: - type: Transform @@ -95583,11 +97372,6 @@ entities: - type: Transform pos: 43.5,-33.5 parent: 12 - - uid: 26030 - components: - - type: Transform - pos: 54.5,-43.5 - parent: 12 - uid: 26031 components: - type: Transform @@ -95663,6 +97447,11 @@ entities: - type: Transform pos: 58.5,44.5 parent: 12 + - uid: 26633 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 12 - uid: 29963 components: - type: Transform @@ -95673,6 +97462,13 @@ entities: - type: Transform pos: 41.5,-4.5 parent: 12 +- proto: FancyTableSpawner + entities: + - uid: 5160 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 12 - proto: FaxMachineBase entities: - uid: 3793 @@ -95841,6 +97637,11 @@ entities: - type: Transform pos: -40.5,-24.5 parent: 12 + - uid: 2325 + components: + - type: Transform + pos: -55.5,63.5 + parent: 12 - proto: filingCabinetRandom entities: - uid: 1959 @@ -96147,12 +97948,14 @@ entities: parent: 12 - type: DeviceList devices: - - 14471 - - 14472 - - 14474 - - 14475 - - 14476 + - 24083 + - 24082 - 23943 + - 14476 + - 14475 + - 26899 + - 14472 + - 14471 - uid: 24244 components: - type: Transform @@ -96179,7 +97982,8 @@ entities: - uid: 9213 components: - type: Transform - pos: 45.473827,-36.46947 + rot: -6.283185307179586 rad + pos: 44.6147,-36.414783 parent: 12 - proto: FireAxeCabinetFilled entities: @@ -96255,6 +98059,11 @@ entities: - type: DeviceNetwork deviceLists: - 28354 + - uid: 28829 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 12 - uid: 30697 components: - type: Transform @@ -96565,11 +98374,57 @@ entities: - type: DeviceNetwork deviceLists: - 28343 + - uid: 616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,62.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 328 + - 28328 + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-40.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 + - uid: 704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-48.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 + - uid: 708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,64.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 28328 - uid: 927 components: - type: Transform pos: -3.5,-6.5 parent: 12 + - uid: 1348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1375 - uid: 1553 components: - type: Transform @@ -96777,6 +98632,7 @@ entities: deviceLists: - 23937 - 2852 + - 706 - uid: 2909 components: - type: Transform @@ -96990,6 +98846,7 @@ entities: deviceLists: - 23937 - 2852 + - 706 - uid: 4266 components: - type: Transform @@ -97088,6 +98945,13 @@ entities: deviceLists: - 23937 - 2852 + - 1169 + - uid: 6101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-31.5 + parent: 12 - uid: 6175 components: - type: Transform @@ -97097,6 +98961,7 @@ entities: deviceLists: - 23937 - 2852 + - 1169 - uid: 6181 components: - type: Transform @@ -97121,6 +98986,15 @@ entities: deviceLists: - 23937 - 2852 + - uid: 6708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-42.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 - uid: 6735 components: - type: Transform @@ -97296,6 +99170,14 @@ entities: - 23929 - 28367 - 8914 + - uid: 7529 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 22005 - uid: 7560 components: - type: Transform @@ -97306,12 +99188,6 @@ entities: deviceLists: - 70 - 29275 - - uid: 7609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-42.5 - parent: 12 - uid: 7615 components: - type: Transform @@ -97339,6 +99215,7 @@ entities: - type: DeviceNetwork deviceLists: - 6833 + - 752 - uid: 7618 components: - type: Transform @@ -97348,6 +99225,7 @@ entities: - type: DeviceNetwork deviceLists: - 6833 + - 752 - uid: 7775 components: - type: Transform @@ -97386,6 +99264,22 @@ entities: deviceLists: - 30445 - 9101 + - uid: 8351 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 + - uid: 8416 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 - uid: 8460 components: - type: Transform @@ -97568,7 +99462,7 @@ entities: - type: DeviceNetwork deviceLists: - 28376 - - 4887 + - 22005 - uid: 9322 components: - type: Transform @@ -97649,9 +99543,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,62.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 29782 - uid: 9606 components: - type: Transform @@ -97737,25 +99628,11 @@ entities: deviceLists: - 23796 - 70 - - uid: 11603 - components: - - type: Transform - pos: -49.5,65.5 - parent: 12 - uid: 11858 components: - type: Transform pos: -48.5,48.5 parent: 12 - - uid: 12055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,63.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28328 - uid: 12336 components: - type: Transform @@ -97994,6 +99871,7 @@ entities: - type: DeviceNetwork deviceLists: - 23942 + - 28271 - uid: 14473 components: - type: Transform @@ -98002,16 +99880,6 @@ entities: - type: DeviceNetwork deviceLists: - 30452 - - uid: 14474 - components: - - type: Transform - pos: 50.5,60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23942 - - 28271 - - 28328 - uid: 14475 components: - type: Transform @@ -98031,6 +99899,7 @@ entities: deviceLists: - 23942 - 24187 + - 28271 - uid: 14477 components: - type: Transform @@ -99010,12 +100879,6 @@ entities: - 23905 - 2857 - 28337 - - uid: 19849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,65.5 - parent: 12 - uid: 20333 components: - type: Transform @@ -99215,12 +101078,6 @@ entities: deviceLists: - 23917 - 9702 - - uid: 22043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-18.5 - parent: 12 - uid: 22142 components: - type: Transform @@ -99573,6 +101430,7 @@ entities: deviceLists: - 23942 - 24187 + - 28271 - uid: 24082 components: - type: Transform @@ -99583,6 +101441,7 @@ entities: - 24244 - 23643 - 28271 + - 23942 - uid: 24083 components: - type: Transform @@ -99593,6 +101452,7 @@ entities: - 24244 - 23643 - 28271 + - 23942 - uid: 24427 components: - type: Transform @@ -99640,6 +101500,22 @@ entities: deviceLists: - 30445 - 31755 + - uid: 25984 + components: + - type: Transform + pos: 11.5,-52.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 + - uid: 26030 + components: + - type: Transform + pos: 12.5,-54.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 - uid: 26113 components: - type: Transform @@ -99681,16 +101557,33 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 26593 + - uid: 26671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,3.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 12 + - uid: 26739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-29.5 + parent: 12 + - uid: 26749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-29.5 + parent: 12 + - uid: 26899 + components: + - type: Transform + pos: 48.5,57.5 parent: 12 - type: DeviceNetwork deviceLists: - - 4906 - - 2682 + - 28271 + - 23942 - uid: 26923 components: - type: Transform @@ -99710,6 +101603,20 @@ entities: - type: DeviceNetwork deviceLists: - 27312 + - uid: 27072 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 8914 + - 6833 + - uid: 27106 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 12 - uid: 27108 components: - type: Transform @@ -99728,12 +101635,21 @@ entities: - type: DeviceNetwork deviceLists: - 27296 - - uid: 27449 + - uid: 27309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-12.5 + pos: -58.5,-19.5 parent: 12 + - uid: 27433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-49.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 - uid: 27450 components: - type: Transform @@ -99790,7 +101706,7 @@ entities: - type: DeviceNetwork deviceLists: - 10019 - - 4887 + - 22005 - uid: 28904 components: - type: Transform @@ -99849,15 +101765,6 @@ entities: - 23927 - 4418 - 7342 - - uid: 29820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,67.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29783 - uid: 29867 components: - type: Transform @@ -99867,11 +101774,6 @@ entities: - type: DeviceNetwork deviceLists: - 9972 - - uid: 29872 - components: - - type: Transform - pos: 15.5,13.5 - parent: 12 - uid: 29981 components: - type: Transform @@ -99890,6 +101792,12 @@ entities: - type: DeviceNetwork deviceLists: - 28376 + - uid: 29996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,66.5 + parent: 12 - uid: 30199 components: - type: Transform @@ -100007,6 +101915,11 @@ entities: - 32066 - proto: Fireplace entities: + - uid: 28307 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 12 - uid: 30393 components: - type: Transform @@ -100132,13 +102045,43 @@ entities: - uid: 26655 components: - type: Transform - pos: 29.65808,-22.442064 + rot: -43.98229715025713 rad + pos: 33.316917,-19.378597 parent: 12 + - type: HandheldLight + toggleActionEntity: 5528 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 5528 + - type: ActionsContainer - uid: 26694 components: - type: Transform - pos: 29.33193,-22.287144 + rot: -43.98229715025713 rad + pos: 33.599323,-19.174892 parent: 12 + - type: HandheldLight + toggleActionEntity: 5542 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 5542 + - type: ActionsContainer - proto: FlippoLighter entities: - uid: 13633 @@ -100562,6 +102505,29 @@ entities: rot: -1.5707963267948966 rad pos: -0.061189175,24.355316 parent: 12 +- proto: FoamBlade + entities: + - uid: 28325 + components: + - type: Transform + pos: -35.487053,-17.574665 + parent: 12 +- proto: FoamCrossbow + entities: + - uid: 6286 + components: + - type: Transform + parent: 28254 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoamCutlass + entities: + - uid: 28832 + components: + - type: Transform + pos: 36.47221,-52.50638 + parent: 12 - proto: FolderSpawner entities: - uid: 2925 @@ -100586,6 +102552,13 @@ entities: - type: Transform pos: 57.376583,58.4156 parent: 12 +- proto: FoodBakedCannabisBrownie + entities: + - uid: 30036 + components: + - type: Transform + pos: -53.30888,54.409172 + parent: 12 - proto: FoodBanana entities: - uid: 4201 @@ -100780,6 +102753,13 @@ entities: - type: Transform pos: 10.45153,-49.457336 parent: 12 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 15371 + components: + - type: Transform + pos: -0.5,19.5 + parent: 12 - proto: FoodCartCold entities: - uid: 13311 @@ -100796,14 +102776,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,55.5 parent: 12 -- proto: FoodCheeseSlice - entities: - - uid: 9224 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -24.51083,53.52161 - parent: 12 - proto: FoodCondimentBottleEnzyme entities: - uid: 11791 @@ -100868,14 +102840,7 @@ entities: - uid: 32189 components: - type: Transform - pos: -62.21474,-54.675816 - parent: 12 -- proto: FoodDonutSpaceman - entities: - - uid: 1314 - components: - - type: Transform - pos: -55.35382,-37.589436 + pos: -60.632877,-54.815796 parent: 12 - proto: FoodFrozenSnowcone entities: @@ -100936,6 +102901,13 @@ entities: - type: Transform pos: 56.52447,50.519176 parent: 12 +- proto: FoodMealFries + entities: + - uid: 6337 + components: + - type: Transform + pos: -52.485752,-14.355 + parent: 12 - proto: FoodMeat entities: - uid: 31346 @@ -101132,27 +103104,24 @@ entities: - uid: 32191 components: - type: Transform - pos: -62.222897,-54.586063 + pos: -61.584267,-54.808846 parent: 12 - proto: FoodPotato entities: - uid: 31464 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.2709417,-62.27473 + pos: 5.7125697,-59.47866 parent: 12 - uid: 31465 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.40983,-62.46236 + pos: 6.643125,-62.02904 parent: 12 - uid: 31466 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.576497,-62.253883 + pos: 5.8445144,-61.33158 parent: 12 - proto: FoodRiceBoiled entities: @@ -101180,6 +103149,30 @@ entities: - type: Transform pos: 49.52798,18.523731 parent: 12 +- proto: FoodSnackMREBrownie + entities: + - uid: 29154 + components: + - type: Transform + pos: -54.505745,61.642376 + parent: 12 +- proto: FoodSnackRaisins + entities: + - uid: 27824 + components: + - type: Transform + pos: -38.5,-60.5 + parent: 12 + - uid: 27844 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 12 + - uid: 29485 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 12 - proto: FoodSoupMiso entities: - uid: 2685 @@ -101195,6 +103188,13 @@ entities: - type: Transform pos: -33.50554,-59.27054 parent: 12 +- proto: FoodTinMRE + entities: + - uid: 7483 + components: + - type: Transform + pos: -59.558186,-24.334799 + parent: 12 - proto: FoodTinMRETrash entities: - uid: 31147 @@ -101204,11 +103204,6 @@ entities: parent: 12 - proto: FoodTinPeachesMaint entities: - - uid: 19822 - components: - - type: Transform - pos: 50.425446,1.6118504 - parent: 12 - uid: 21597 components: - type: Transform @@ -101221,6 +103216,11 @@ entities: parent: 12 - proto: FoodTinPeachesMaintTrash entities: + - uid: 29645 + components: + - type: Transform + pos: -27.343327,78.76142 + parent: 12 - uid: 31133 components: - type: Transform @@ -101229,7 +103229,7 @@ entities: - uid: 32192 components: - type: Transform - pos: -61.211834,-54.267845 + pos: -61.132877,-54.03053 parent: 12 - proto: Football entities: @@ -101290,15 +103290,11 @@ entities: parent: 12 - proto: GasAnalyzer entities: - - uid: 5918 - components: - - type: Transform - pos: 33.823044,-20.694681 - parent: 12 - uid: 5919 components: - type: Transform - pos: 33.83867,-19.804056 + rot: -43.98229715025713 rad + pos: 33.728954,-18.568962 parent: 12 - proto: GasFilter entities: @@ -101457,11 +103453,6 @@ entities: - type: Transform pos: 16.5,21.5 parent: 12 - - uid: 19263 - components: - - type: Transform - pos: -24.5,54.5 - parent: 12 - proto: GasPassiveVent entities: - uid: 1705 @@ -101498,12 +103489,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,1.5 parent: 12 - - uid: 4763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,54.5 - parent: 12 - uid: 4962 components: - type: Transform @@ -101536,6 +103521,17 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-0.5 parent: 12 + - uid: 8038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-17.5 + parent: 12 + - uid: 8039 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 12 - uid: 15414 components: - type: Transform @@ -101560,11 +103556,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,31.5 parent: 12 - - uid: 22005 - components: - - type: Transform - pos: -25.5,56.5 - parent: 12 - uid: 30469 components: - type: Transform @@ -101801,6 +103792,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2377 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2631 components: - type: Transform @@ -101916,22 +103914,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3502 components: - type: Transform @@ -102182,12 +104164,6 @@ entities: - type: Transform pos: 25.5,-9.5 parent: 12 - - uid: 4694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,53.5 - parent: 12 - uid: 4759 components: - type: Transform @@ -102349,13 +104325,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5487 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5504 components: - type: Transform @@ -102411,11 +104380,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 6243 + - uid: 6287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 + rot: 3.141592653589793 rad + pos: 14.5,-16.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -102434,13 +104403,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7034 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7062 components: - type: Transform @@ -102485,6 +104447,14 @@ entities: - type: Transform pos: 25.5,-3.5 parent: 12 + - uid: 7228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7303 components: - type: Transform @@ -102505,6 +104475,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,63.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7426 + components: + - type: Transform + pos: 50.5,63.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7471 components: - type: Transform @@ -102549,6 +104534,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 8446 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8531 components: - type: Transform @@ -102868,14 +104860,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11011 components: - type: Transform @@ -103189,14 +105173,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15413 components: - type: Transform @@ -103630,6 +105606,14 @@ entities: rot: 3.141592653589793 rad pos: -4.5,10.5 parent: 12 + - uid: 21673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21841 components: - type: Transform @@ -103646,18 +105630,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21906 - components: - - type: Transform - pos: -22.5,53.5 - parent: 12 - - uid: 22072 - components: - - type: Transform - pos: 53.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22105 components: - type: Transform @@ -104154,6 +106126,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23637 components: - type: Transform @@ -104319,6 +106299,14 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,24.5 parent: 12 + - uid: 26906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26985 components: - type: Transform @@ -104334,6 +106322,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27216 + components: + - type: Transform + pos: -57.5,-35.5 + parent: 12 - uid: 27273 components: - type: Transform @@ -104854,6 +106847,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 564 + components: + - type: Transform + pos: 16.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 566 + components: + - type: Transform + pos: 16.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 631 components: - type: Transform @@ -106210,6 +108217,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2072 components: - type: Transform @@ -106427,14 +108442,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2859 components: - type: Transform @@ -106507,13 +108514,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2964 - components: - - type: Transform - pos: 15.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3009 components: - type: Transform @@ -106522,13 +108522,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3011 - components: - - type: Transform - pos: 15.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3016 components: - type: Transform @@ -106543,14 +108536,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,19.5 parent: 12 - - uid: 3079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3096 components: - type: Transform @@ -108053,13 +110038,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3940 - components: - - type: Transform - pos: 15.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3955 components: - type: Transform @@ -108193,13 +110171,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4412 - components: - - type: Transform - pos: 49.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4453 components: - type: Transform @@ -108535,14 +110506,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-5.5 parent: 12 - - uid: 4791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4802 components: - type: Transform @@ -108551,14 +110514,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4804 components: - type: Transform @@ -109032,14 +110987,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-9.5 parent: 12 - - uid: 5053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5079 components: - type: Transform @@ -109146,14 +111093,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5264 components: - type: Transform @@ -109338,14 +111277,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5306 components: - type: Transform @@ -109733,14 +111664,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5486 components: - type: Transform @@ -109869,6 +111792,21 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-7.5 parent: 12 + - uid: 5909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5913 + components: + - type: Transform + pos: 53.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5937 components: - type: Transform @@ -109966,6 +111904,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5957 + components: + - type: Transform + pos: 16.5,13.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5958 components: - type: Transform @@ -110102,6 +112047,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6715 components: - type: Transform @@ -110110,6 +112063,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6769 components: - type: Transform @@ -110695,14 +112656,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7060 components: - type: Transform @@ -110982,6 +112935,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7115 components: - type: Transform @@ -110998,6 +112959,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FFA500FF' + - uid: 7118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7119 components: - type: Transform @@ -111088,6 +113057,22 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,19.5 parent: 12 + - uid: 7152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7169 components: - type: Transform @@ -111252,6 +113237,14 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,3.5 parent: 12 + - uid: 7223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7239 components: - type: Transform @@ -111302,6 +113295,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7310 + components: + - type: Transform + pos: 39.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7314 components: - type: Transform @@ -111355,6 +113355,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7457 components: - type: Transform @@ -111411,6 +113427,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7508 components: - type: Transform @@ -111503,6 +113535,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7838 + components: + - type: Transform + pos: -46.5,44.5 + parent: 12 - uid: 7846 components: - type: Transform @@ -111533,6 +113570,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8457 + components: + - type: Transform + pos: 50.5,61.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8492 components: - type: Transform @@ -112659,14 +114703,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8899 components: - type: Transform @@ -112726,6 +114762,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 9144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9168 components: - type: Transform @@ -113875,14 +115919,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11008 components: - type: Transform @@ -115786,14 +117822,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 13836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13917 components: - type: Transform @@ -119306,6 +121334,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19540 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19541 components: - type: Transform @@ -119338,6 +121373,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19889 components: - type: Transform @@ -120665,6 +122708,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 20543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 20907 components: - type: Transform @@ -121429,14 +123480,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 21033 components: - type: Transform @@ -124602,13 +126645,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23884 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23949 components: - type: Transform @@ -124945,14 +126981,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#947507FF' - - uid: 24496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24566 components: - type: Transform @@ -125022,14 +127050,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 25195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25389 components: - type: Transform @@ -125221,12 +127241,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 12 - uid: 25959 components: - type: Transform @@ -125265,6 +127279,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-16.5 + parent: 12 - uid: 26315 components: - type: Transform @@ -125720,6 +127740,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,56.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,57.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,58.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26925 components: - type: Transform @@ -126155,6 +128199,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28972 + components: + - type: Transform + pos: 37.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 29050 components: - type: Transform @@ -126187,14 +128238,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 29162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29262 components: - type: Transform @@ -127796,6 +129839,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2753 components: - type: Transform @@ -128113,22 +130164,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4811 components: - type: Transform @@ -128190,14 +130225,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5144 components: - type: Transform @@ -128237,14 +130264,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5308 components: - type: Transform @@ -128322,14 +130341,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5530 components: - type: Transform @@ -128368,6 +130379,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,55.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6751 components: - type: Transform @@ -128376,6 +130403,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6794 components: - type: Transform @@ -128473,6 +130508,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7116 + components: + - type: Transform + pos: 15.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7138 components: - type: Transform @@ -128489,6 +130531,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,57.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7184 components: - type: Transform @@ -128537,6 +130587,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7299 components: - type: Transform @@ -128607,14 +130665,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7839 components: - type: Transform @@ -128623,6 +130673,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8070 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8293 components: - type: Transform @@ -128631,6 +130688,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 8427 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8505 components: - type: Transform @@ -129052,14 +131116,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10903 components: - type: Transform @@ -130018,22 +132074,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19853 components: - type: Transform @@ -130616,6 +132656,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26086 + components: + - type: Transform + pos: -58.5,-35.5 + parent: 12 - uid: 26614 components: - type: Transform @@ -130661,14 +132706,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 27985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 27992 components: - type: Transform @@ -130896,17 +132933,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 12 - - uid: 4938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,52.5 - parent: 12 - - uid: 9059 - components: - - type: Transform - pos: 26.5,-14.5 - parent: 12 - uid: 9813 components: - type: Transform @@ -131052,6 +133078,18 @@ entities: - type: Transform pos: 1.5,-18.5 parent: 12 + - uid: 26903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-36.5 + parent: 12 + - uid: 27018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-36.5 + parent: 12 - uid: 28755 components: - type: Transform @@ -131152,12 +133190,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-3.5 parent: 12 - - uid: 4696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,53.5 - parent: 12 - uid: 4743 components: - type: Transform @@ -131241,13 +133273,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26418 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasThermoMachineFreezer entities: - uid: 2356 @@ -131322,15 +133347,14 @@ entities: parent: 12 - type: GasThermoMachine targetTemperature: 330 -- proto: GasValve - entities: - - uid: 4780 + - uid: 27077 components: - type: Transform - pos: -25.5,55.5 + rot: 1.5707963267948966 rad + pos: -59.5,-35.5 parent: 12 - - type: GasValve - open: False +- proto: GasValve + entities: - uid: 13519 components: - type: Transform @@ -131345,11 +133369,6 @@ entities: parent: 12 - type: GasValve open: False - - uid: 18267 - components: - - type: Transform - pos: -46.5,44.5 - parent: 12 - uid: 28754 components: - type: Transform @@ -131621,16 +133640,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5305 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4887 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5309 components: - type: Transform @@ -131701,6 +133710,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6197 + components: + - type: Transform + pos: 37.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1375 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6709 components: - type: Transform @@ -131718,6 +133737,9 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-47.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6977 @@ -131726,6 +133748,9 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-47.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6978 @@ -131749,6 +133774,17 @@ entities: - 32066 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 22005 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7327 components: - type: Transform @@ -131805,6 +133841,9 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-40.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8543 @@ -133141,14 +135180,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26415 + - uid: 26897 components: - type: Transform - pos: 35.5,0.5 + pos: 48.5,59.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 2682 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26994 @@ -133201,14 +135237,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29258 components: - type: Transform @@ -133241,9 +135269,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,62.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 29782 - type: AtmosPipeColor color: '#0055CCFF' - uid: 29400 @@ -133259,9 +135284,6 @@ entities: - type: Transform pos: -43.5,68.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 29783 - type: AtmosPipeColor color: '#0055CCFF' - uid: 29837 @@ -133520,6 +135542,26 @@ entities: - 25448 - type: AtmosPipeColor color: '#990000FF' + - uid: 1537 + components: + - type: Transform + pos: 16.5,14.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2501 + components: + - type: Transform + pos: 53.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2673 components: - type: Transform @@ -133531,14 +135573,14 @@ entities: - 30453 - type: AtmosPipeColor color: '#990000FF' - - uid: 2684 + - uid: 2680 components: - type: Transform - pos: 36.5,0.5 + pos: 39.5,2.5 parent: 12 - type: DeviceNetwork deviceLists: - - 2682 + - 1375 - type: AtmosPipeColor color: '#990000FF' - uid: 2755 @@ -133621,6 +135663,17 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' + - uid: 4523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,57.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 28271 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4723 components: - type: Transform @@ -133632,6 +135685,16 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' + - uid: 4938 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 22005 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5254 components: - type: Transform @@ -133643,17 +135706,6 @@ entities: - 28376 - type: AtmosPipeColor color: '#990000FF' - - uid: 5255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4887 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5280 components: - type: Transform @@ -133705,6 +135757,17 @@ entities: - 28366 - type: AtmosPipeColor color: '#990000FF' + - uid: 5873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,63.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 28328 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5887 components: - type: Transform @@ -133757,6 +135820,9 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 - type: AtmosPipeColor color: '#990000FF' - uid: 6981 @@ -133765,6 +135831,9 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-47.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 - type: AtmosPipeColor color: '#990000FF' - uid: 6983 @@ -133828,6 +135897,9 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-40.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 - type: AtmosPipeColor color: '#990000FF' - uid: 8544 @@ -133903,16 +135975,6 @@ entities: - 448 - type: AtmosPipeColor color: '#990000FF' - - uid: 9488 - components: - - type: Transform - pos: 15.5,14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12273 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10006 components: - type: Transform @@ -134691,16 +136753,6 @@ entities: - 23632 - type: AtmosPipeColor color: '#990000FF' - - uid: 23092 - components: - - type: Transform - pos: 50.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28328 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23192 components: - type: Transform @@ -134765,17 +136817,6 @@ entities: - 28360 - type: AtmosPipeColor color: '#990000FF' - - uid: 23940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28271 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23996 components: - type: Transform @@ -134901,16 +136942,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26949 - components: - - type: Transform - pos: 52.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27249 components: - type: Transform @@ -135154,10 +137185,33 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-4.5 parent: 12 - - uid: 7155 + - uid: 2387 components: - type: Transform - pos: 46.5,0.5 + pos: -57.5,-17.5 + parent: 12 + - uid: 2406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-28.5 + parent: 12 + - uid: 2407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-20.5 + parent: 12 + - uid: 6029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-33.5 + parent: 12 + - uid: 6277 + components: + - type: Transform + pos: -34.5,-16.5 parent: 12 - uid: 10918 components: @@ -135226,29 +137280,10 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-2.5 parent: 12 - - uid: 27148 + - uid: 26755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-18.5 - parent: 12 - - uid: 27839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-31.5 - parent: 12 - - uid: 28191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-15.5 - parent: 12 - - uid: 28198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-17.5 + pos: 46.5,-4.5 parent: 12 - uid: 28445 components: @@ -135261,6 +137296,23 @@ entities: - type: Transform pos: 48.5,9.5 parent: 12 + - uid: 29035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,53.5 + parent: 12 + - uid: 29396 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 12 + - uid: 29986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,74.5 + parent: 12 - uid: 30737 components: - type: Transform @@ -135326,7 +137378,8 @@ entities: - uid: 29613 components: - type: Transform - pos: -43.34914,69.38818 + rot: 2.220446049250313E-16 rad + pos: -47.544113,68.56509 parent: 12 - uid: 30217 components: @@ -135340,11 +137393,6 @@ entities: parent: 12 - proto: GlowstickBlue entities: - - uid: 29614 - components: - - type: Transform - pos: -43.64537,71.96256 - parent: 12 - uid: 30220 components: - type: Transform @@ -135361,21 +137409,24 @@ entities: - uid: 29612 components: - type: Transform - pos: -43.226837,69.27803 + rot: -6.283185307179586 rad + pos: -52.46078,75.45116 parent: 12 - proto: GlowstickRed entities: - uid: 29611 components: - type: Transform - pos: -43.50814,70.391785 + rot: -6.283185307179586 rad + pos: -46.405224,74.242805 parent: 12 - proto: GlowstickYellow entities: - uid: 29600 components: - type: Transform - pos: -43.361374,70.35507 + rot: -6.283185307179586 rad + pos: -53.55106,69.57985 parent: 12 - proto: GrassBattlemap entities: @@ -135850,17 +137901,7 @@ entities: - uid: 614 components: - type: Transform - pos: -39.5,-18.5 - parent: 12 - - uid: 615 - components: - - type: Transform - pos: -38.5,-18.5 - parent: 12 - - uid: 616 - components: - - type: Transform - pos: -37.5,-18.5 + pos: 37.5,-47.5 parent: 12 - uid: 620 components: @@ -135982,24 +138023,6 @@ entities: - type: Transform pos: -50.5,-21.5 parent: 12 - - uid: 752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 12 - - uid: 756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 12 - - uid: 757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-13.5 - parent: 12 - uid: 767 components: - type: Transform @@ -136213,17 +138236,10 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-45.5 parent: 12 - - uid: 1065 + - uid: 1276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,56.5 - parent: 12 - - uid: 1285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-42.5 + pos: -51.5,-17.5 parent: 12 - uid: 1352 components: @@ -136242,12 +138258,6 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 - - uid: 1523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,75.5 - parent: 12 - uid: 1538 components: - type: Transform @@ -136808,15 +138818,25 @@ entities: - type: Transform pos: 61.5,-22.5 parent: 12 + - uid: 3109 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 + - uid: 3111 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 12 - uid: 3126 components: - type: Transform pos: -50.5,47.5 parent: 12 - - uid: 3198 + - uid: 3200 components: - type: Transform - pos: 35.5,-0.5 + pos: -58.5,56.5 parent: 12 - uid: 3480 components: @@ -136840,26 +138860,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-47.5 parent: 12 - - uid: 4106 - components: - - type: Transform - pos: 9.5,-53.5 - parent: 12 - - uid: 4107 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 12 - - uid: 4108 - components: - - type: Transform - pos: 9.5,-52.5 - parent: 12 - - uid: 4109 - components: - - type: Transform - pos: 9.5,-51.5 - parent: 12 - uid: 4230 components: - type: Transform @@ -136894,12 +138894,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-24.5 parent: 12 - - uid: 4423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 12 - uid: 4424 components: - type: Transform @@ -136954,39 +138948,16 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 12 - - uid: 4464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 12 - uid: 4465 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-18.5 parent: 12 - - uid: 4466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 12 - - uid: 4467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 12 - - uid: 4476 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 12 - uid: 4524 components: - type: Transform - pos: 7.5,-16.5 + pos: 49.5,57.5 parent: 12 - uid: 4598 components: @@ -137009,6 +138980,11 @@ entities: - type: Transform pos: 21.5,3.5 parent: 12 + - uid: 4695 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 12 - uid: 4758 components: - type: Transform @@ -137050,6 +139026,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-57.5 parent: 12 + - uid: 4875 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 12 - uid: 4912 components: - type: Transform @@ -137105,30 +139086,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,3.5 parent: 12 - - uid: 5314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-54.5 - parent: 12 - - uid: 5371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-53.5 - parent: 12 - - uid: 5372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-52.5 - parent: 12 - - uid: 5430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-51.5 - parent: 12 - uid: 5437 components: - type: Transform @@ -137165,6 +139122,12 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 12 + - uid: 5513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,60.5 + parent: 12 - uid: 5715 components: - type: Transform @@ -137211,24 +139174,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 12 - - uid: 5829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,64.5 - parent: 12 - uid: 5832 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-5.5 parent: 12 - - uid: 5834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,65.5 - parent: 12 - uid: 5878 components: - type: Transform @@ -137475,11 +139426,6 @@ entities: - type: Transform pos: 14.5,-52.5 parent: 12 - - uid: 6155 - components: - - type: Transform - pos: 13.5,-54.5 - parent: 12 - uid: 6167 components: - type: Transform @@ -137545,113 +139491,22 @@ entities: - type: Transform pos: 29.5,-52.5 parent: 12 - - uid: 6185 - components: - - type: Transform - pos: 30.5,-54.5 - parent: 12 - - uid: 6187 - components: - - type: Transform - pos: 32.5,-54.5 - parent: 12 - - uid: 6188 - components: - - type: Transform - pos: 32.5,-53.5 - parent: 12 - - uid: 6189 - components: - - type: Transform - pos: 32.5,-52.5 - parent: 12 - - uid: 6190 - components: - - type: Transform - pos: 32.5,-51.5 - parent: 12 - - uid: 6191 - components: - - type: Transform - pos: 32.5,-50.5 - parent: 12 - - uid: 6192 - components: - - type: Transform - pos: 32.5,-49.5 - parent: 12 - - uid: 6193 - components: - - type: Transform - pos: 32.5,-48.5 - parent: 12 - - uid: 6194 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 12 - - uid: 6195 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 12 - - uid: 6196 - components: - - type: Transform - pos: 32.5,-45.5 - parent: 12 - uid: 6208 components: - type: Transform pos: 7.5,75.5 parent: 12 - - uid: 6211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,75.5 - parent: 12 - uid: 6246 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-44.5 parent: 12 - - uid: 6284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-43.5 - parent: 12 - - uid: 6285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-44.5 - parent: 12 - - uid: 6286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-44.5 - parent: 12 - - uid: 6301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-40.5 - parent: 12 - uid: 6302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 12 - - uid: 6303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 + rot: 1.5707963267948966 rad + pos: -38.5,-70.5 parent: 12 - uid: 6309 components: @@ -137664,18 +139519,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-44.5 parent: 12 - - uid: 6337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-44.5 - parent: 12 - - uid: 6338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-45.5 - parent: 12 - uid: 6339 components: - type: Transform @@ -137800,11 +139643,6 @@ entities: - type: Transform pos: 28.5,-1.5 parent: 12 - - uid: 7300 - components: - - type: Transform - pos: 29.5,-54.5 - parent: 12 - uid: 7356 components: - type: Transform @@ -137889,18 +139727,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-30.5 parent: 12 - - uid: 7481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-44.5 - parent: 12 - - uid: 7482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-45.5 - parent: 12 - uid: 7486 components: - type: Transform @@ -137919,12 +139745,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-46.5 parent: 12 - - uid: 7492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-50.5 - parent: 12 - uid: 7495 components: - type: Transform @@ -137943,12 +139763,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-42.5 parent: 12 - - uid: 7500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-50.5 - parent: 12 - uid: 7504 components: - type: Transform @@ -138218,12 +140032,6 @@ entities: - type: Transform pos: -63.5,-23.5 parent: 12 - - uid: 8446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 12 - uid: 8479 components: - type: Transform @@ -138244,11 +140052,10 @@ entities: - type: Transform pos: -47.5,0.5 parent: 12 - - uid: 8984 + - uid: 8713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-50.5 + pos: 49.5,59.5 parent: 12 - uid: 9057 components: @@ -138260,6 +140067,22 @@ entities: - type: Transform pos: -58.5,36.5 parent: 12 + - uid: 9200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-44.5 + parent: 12 + - uid: 9212 + components: + - type: Transform + pos: -58.5,-37.5 + parent: 12 + - uid: 9244 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 12 - uid: 9402 components: - type: Transform @@ -138318,6 +140141,11 @@ entities: - type: Transform pos: 63.5,6.5 parent: 12 + - uid: 9756 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 12 - uid: 9871 components: - type: Transform @@ -138339,12 +140167,6 @@ entities: - type: Transform pos: -47.5,3.5 parent: 12 - - uid: 9997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-50.5 - parent: 12 - uid: 10060 components: - type: Transform @@ -138731,8 +140553,7 @@ entities: - uid: 10317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-26.5 + pos: 41.5,3.5 parent: 12 - uid: 10327 components: @@ -138746,11 +140567,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-7.5 parent: 12 - - uid: 10341 - components: - - type: Transform - pos: 14.5,-54.5 - parent: 12 - uid: 10347 components: - type: Transform @@ -138761,6 +140577,11 @@ entities: - type: Transform pos: 63.5,5.5 parent: 12 + - uid: 10557 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 12 - uid: 10569 components: - type: Transform @@ -138880,6 +140701,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-31.5 + parent: 12 - uid: 10877 components: - type: Transform @@ -139035,18 +140862,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,26.5 parent: 12 - - uid: 11250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 12 - - uid: 11301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,75.5 - parent: 12 - uid: 11311 components: - type: Transform @@ -139069,6 +140884,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 12 + - uid: 11366 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 12 - uid: 11420 components: - type: Transform @@ -139116,6 +140936,11 @@ entities: - type: Transform pos: 44.5,15.5 parent: 12 + - uid: 11520 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 12 - uid: 11527 components: - type: Transform @@ -139177,6 +141002,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 12 + - uid: 11603 + components: + - type: Transform + pos: -45.5,76.5 + parent: 12 - uid: 11616 components: - type: Transform @@ -139252,11 +141082,6 @@ entities: - type: Transform pos: 29.5,34.5 parent: 12 - - uid: 11722 - components: - - type: Transform - pos: 25.5,29.5 - parent: 12 - uid: 11723 components: - type: Transform @@ -139387,6 +141212,11 @@ entities: - type: Transform pos: 17.5,30.5 parent: 12 + - uid: 11769 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 12 - uid: 11794 components: - type: Transform @@ -139498,6 +141328,16 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 12 + - uid: 12033 + components: + - type: Transform + pos: -45.5,75.5 + parent: 12 + - uid: 12055 + components: + - type: Transform + pos: -59.5,-37.5 + parent: 12 - uid: 12311 components: - type: Transform @@ -139880,6 +141720,11 @@ entities: - type: Transform pos: 49.5,42.5 parent: 12 + - uid: 12645 + components: + - type: Transform + pos: -53.5,76.5 + parent: 12 - uid: 12676 components: - type: Transform @@ -139890,12 +141735,6 @@ entities: - type: Transform pos: 17.5,14.5 parent: 12 - - uid: 12697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-3.5 - parent: 12 - uid: 12699 components: - type: Transform @@ -139914,6 +141753,11 @@ entities: rot: 3.141592653589793 rad pos: -34.5,61.5 parent: 12 + - uid: 13210 + components: + - type: Transform + pos: -54.5,75.5 + parent: 12 - uid: 13991 components: - type: Transform @@ -140017,28 +141861,10 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,44.5 parent: 12 - - uid: 14175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,60.5 - parent: 12 - uid: 14176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,60.5 - parent: 12 - - uid: 14184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-50.5 - parent: 12 - - uid: 14196 - components: - - type: Transform - pos: 37.5,-46.5 + pos: 49.5,58.5 parent: 12 - uid: 14204 components: @@ -140146,12 +141972,6 @@ entities: - type: Transform pos: 20.5,59.5 parent: 12 - - uid: 14527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-44.5 - parent: 12 - uid: 14537 components: - type: Transform @@ -140987,11 +142807,6 @@ entities: - type: Transform pos: 5.5,25.5 parent: 12 - - uid: 16373 - components: - - type: Transform - pos: -53.5,-15.5 - parent: 12 - uid: 16413 components: - type: Transform @@ -141029,10 +142844,10 @@ entities: - type: Transform pos: -13.5,76.5 parent: 12 - - uid: 16525 + - uid: 16526 components: - type: Transform - pos: -12.5,77.5 + pos: -32.5,-15.5 parent: 12 - uid: 16531 components: @@ -141040,6 +142855,11 @@ entities: rot: 3.141592653589793 rad pos: -11.5,79.5 parent: 12 + - uid: 16546 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 12 - uid: 16662 components: - type: Transform @@ -141163,11 +142983,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,19.5 parent: 12 - - uid: 17303 - components: - - type: Transform - pos: -54.5,-15.5 - parent: 12 - uid: 17337 components: - type: Transform @@ -141259,6 +143074,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,46.5 parent: 12 + - uid: 17532 + components: + - type: Transform + pos: 36.5,-51.5 + parent: 12 - uid: 17544 components: - type: Transform @@ -141269,6 +143089,11 @@ entities: - type: Transform pos: -59.5,35.5 parent: 12 + - uid: 17811 + components: + - type: Transform + pos: -54.5,76.5 + parent: 12 - uid: 17832 components: - type: Transform @@ -141281,36 +143106,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,47.5 parent: 12 - - uid: 17842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,73.5 - parent: 12 - - uid: 17858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,75.5 - parent: 12 - - uid: 17917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,75.5 - parent: 12 - - uid: 17921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,75.5 - parent: 12 - - uid: 17922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,75.5 - parent: 12 - uid: 17936 components: - type: Transform @@ -141328,11 +143123,21 @@ entities: - type: Transform pos: -61.5,-57.5 parent: 12 + - uid: 18561 + components: + - type: Transform + pos: -2.5,73.5 + parent: 12 - uid: 18577 components: - type: Transform pos: 53.5,61.5 parent: 12 + - uid: 18628 + components: + - type: Transform + pos: -60.5,-36.5 + parent: 12 - uid: 18647 components: - type: Transform @@ -141449,12 +143254,6 @@ entities: - type: Transform pos: -42.5,54.5 parent: 12 - - uid: 19182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,56.5 - parent: 12 - uid: 19191 components: - type: Transform @@ -141521,6 +143320,11 @@ entities: rot: 3.141592653589793 rad pos: -42.5,60.5 parent: 12 + - uid: 19263 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 12 - uid: 19324 components: - type: Transform @@ -141581,12 +143385,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,46.5 parent: 12 - - uid: 19455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 12 - uid: 19458 components: - type: Transform @@ -141639,12 +143437,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,79.5 parent: 12 - - uid: 19653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,73.5 - parent: 12 - uid: 19655 components: - type: Transform @@ -141663,12 +143455,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,78.5 parent: 12 - - uid: 19680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,77.5 - parent: 12 - uid: 19721 components: - type: Transform @@ -141684,12 +143470,6 @@ entities: - type: Transform pos: -5.5,60.5 parent: 12 - - uid: 19783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,79.5 - parent: 12 - uid: 19807 components: - type: Transform @@ -141706,18 +143486,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,58.5 parent: 12 - - uid: 20049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,75.5 - parent: 12 - - uid: 20527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,75.5 - parent: 12 - uid: 20958 components: - type: Transform @@ -141732,17 +143500,7 @@ entities: - uid: 21315 components: - type: Transform - pos: 37.5,-48.5 - parent: 12 - - uid: 21695 - components: - - type: Transform - pos: 36.5,-44.5 - parent: 12 - - uid: 21696 - components: - - type: Transform - pos: 42.5,-40.5 + pos: 34.5,-0.5 parent: 12 - uid: 21706 components: @@ -141769,11 +143527,6 @@ entities: - type: Transform pos: -4.5,-7.5 parent: 12 - - uid: 21968 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 12 - uid: 21987 components: - type: Transform @@ -141828,30 +143581,6 @@ entities: - type: Transform pos: -3.5,-5.5 parent: 12 - - uid: 22026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,67.5 - parent: 12 - - uid: 22029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,75.5 - parent: 12 - - uid: 22031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,75.5 - parent: 12 - - uid: 22033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,73.5 - parent: 12 - uid: 22051 components: - type: Transform @@ -141865,14 +143594,7 @@ entities: - uid: 22193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,75.5 - parent: 12 - - uid: 22194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,75.5 + pos: -38.5,80.5 parent: 12 - uid: 22276 components: @@ -141894,23 +143616,10 @@ entities: - type: Transform pos: 46.5,15.5 parent: 12 - - uid: 22323 + - uid: 22320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,61.5 - parent: 12 - - uid: 22325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,58.5 - parent: 12 - - uid: 22337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,75.5 + pos: -40.5,78.5 parent: 12 - uid: 22686 components: @@ -141940,24 +143649,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-11.5 parent: 12 - - uid: 22855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-15.5 - parent: 12 - - uid: 22860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,75.5 - parent: 12 - - uid: 22952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,75.5 - parent: 12 - uid: 22963 components: - type: Transform @@ -141986,11 +143677,10 @@ entities: - type: Transform pos: 57.5,-7.5 parent: 12 - - uid: 23759 + - uid: 23716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,61.5 + pos: -56.5,56.5 parent: 12 - uid: 23924 components: @@ -142009,12 +143699,6 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 12 - - uid: 24664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,73.5 - parent: 12 - uid: 25089 components: - type: Transform @@ -142036,12 +143720,6 @@ entities: - type: Transform pos: 33.5,-3.5 parent: 12 - - uid: 25399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,66.5 - parent: 12 - uid: 25447 components: - type: Transform @@ -142057,8 +143735,7 @@ entities: - uid: 25450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,75.5 + pos: -26.5,74.5 parent: 12 - uid: 25452 components: @@ -142066,12 +143743,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,62.5 parent: 12 - - uid: 25454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,73.5 - parent: 12 - uid: 25489 components: - type: Transform @@ -142208,31 +143879,11 @@ entities: - type: Transform pos: -32.5,5.5 parent: 12 - - uid: 25678 - components: - - type: Transform - pos: 7.5,-55.5 - parent: 12 - - uid: 25679 - components: - - type: Transform - pos: 8.5,-55.5 - parent: 12 - - uid: 25680 - components: - - type: Transform - pos: 9.5,-55.5 - parent: 12 - uid: 25977 components: - type: Transform pos: -49.5,-19.5 parent: 12 - - uid: 25984 - components: - - type: Transform - pos: -56.5,-15.5 - parent: 12 - uid: 26068 components: - type: Transform @@ -142517,6 +144168,11 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,68.5 parent: 12 + - uid: 26396 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 26409 components: - type: Transform @@ -142590,6 +144246,11 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-21.5 parent: 12 + - uid: 26600 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 12 - uid: 26610 components: - type: Transform @@ -142614,15 +144275,10 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,10.5 parent: 12 - - uid: 26632 + - uid: 26675 components: - type: Transform - pos: 4.5,-21.5 - parent: 12 - - uid: 26633 - components: - - type: Transform - pos: 3.5,-21.5 + pos: 14.5,11.5 parent: 12 - uid: 26676 components: @@ -142642,11 +144298,22 @@ entities: rot: 3.141592653589793 rad pos: 28.5,6.5 parent: 12 + - uid: 26717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 12 - uid: 26747 components: - type: Transform pos: 63.5,3.5 parent: 12 + - uid: 26756 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 12 - uid: 26758 components: - type: Transform @@ -142659,11 +144326,20 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,64.5 parent: 12 - - uid: 27083 + - uid: 26945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-25.5 + pos: 35.5,-0.5 + parent: 12 + - uid: 27008 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 12 + - uid: 27075 + components: + - type: Transform + pos: -60.5,-35.5 parent: 12 - uid: 27094 components: @@ -142693,41 +144369,28 @@ entities: - uid: 27111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-23.5 - parent: 12 - - uid: 27116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-22.5 - parent: 12 - - uid: 27161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,75.5 + pos: -57.5,-11.5 parent: 12 - uid: 27169 components: - type: Transform pos: 29.5,84.5 parent: 12 - - uid: 27244 + - uid: 27237 components: - type: Transform - pos: 41.5,2.5 + pos: 6.5,76.5 + parent: 12 + - uid: 27240 + components: + - type: Transform + pos: 61.5,67.5 parent: 12 - uid: 27248 components: - type: Transform pos: 29.5,76.5 parent: 12 - - uid: 27250 - components: - - type: Transform - pos: 41.5,3.5 - parent: 12 - uid: 27262 components: - type: Transform @@ -142764,6 +144427,11 @@ entities: - type: Transform pos: 29.5,70.5 parent: 12 + - uid: 27308 + components: + - type: Transform + pos: 30.5,76.5 + parent: 12 - uid: 27321 components: - type: Transform @@ -142797,36 +144465,6 @@ entities: - type: Transform pos: 14.5,-18.5 parent: 12 - - uid: 27391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-13.5 - parent: 12 - - uid: 27392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-13.5 - parent: 12 - - uid: 27393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-13.5 - parent: 12 - - uid: 27394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 - parent: 12 - - uid: 27395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 12 - uid: 27406 components: - type: Transform @@ -142838,11 +144476,34 @@ entities: - type: Transform pos: -49.5,-18.5 parent: 12 + - uid: 27448 + components: + - type: Transform + pos: -59.5,-36.5 + parent: 12 + - uid: 27603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-70.5 + parent: 12 - uid: 27629 components: - type: Transform pos: -32.5,-60.5 parent: 12 + - uid: 27703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-70.5 + parent: 12 + - uid: 27720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-60.5 + parent: 12 - uid: 27724 components: - type: Transform @@ -142864,6 +144525,12 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-44.5 parent: 12 + - uid: 27860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-70.5 + parent: 12 - uid: 27910 components: - type: Transform @@ -142900,6 +144567,12 @@ entities: - type: Transform pos: 30.5,81.5 parent: 12 + - uid: 27924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-70.5 + parent: 12 - uid: 27926 components: - type: Transform @@ -143021,6 +144694,12 @@ entities: rot: 3.141592653589793 rad pos: 66.5,60.5 parent: 12 + - uid: 27949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-70.5 + parent: 12 - uid: 27950 components: - type: Transform @@ -143033,11 +144712,47 @@ entities: rot: 3.141592653589793 rad pos: 62.5,61.5 parent: 12 + - uid: 27972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-70.5 + parent: 12 + - uid: 27976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-70.5 + parent: 12 + - uid: 27980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-70.5 + parent: 12 + - uid: 27984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-70.5 + parent: 12 - uid: 27996 components: - type: Transform pos: 30.5,82.5 parent: 12 + - uid: 28044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-70.5 + parent: 12 + - uid: 28046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-70.5 + parent: 12 - uid: 28157 components: - type: Transform @@ -143062,11 +144777,30 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-11.5 parent: 12 - - uid: 28200 + - uid: 28194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-17.5 + pos: -20.5,-69.5 + parent: 12 + - uid: 28244 + components: + - type: Transform + pos: -27.5,-71.5 + parent: 12 + - uid: 28249 + components: + - type: Transform + pos: -26.5,-71.5 + parent: 12 + - uid: 28250 + components: + - type: Transform + pos: -25.5,-71.5 + parent: 12 + - uid: 28251 + components: + - type: Transform + pos: -24.5,-71.5 parent: 12 - uid: 28314 components: @@ -143154,11 +144888,6 @@ entities: - type: Transform pos: 6.5,78.5 parent: 12 - - uid: 28386 - components: - - type: Transform - pos: 5.5,-57.5 - parent: 12 - uid: 28421 components: - type: Transform @@ -143169,27 +144898,67 @@ entities: - type: Transform pos: 6.5,82.5 parent: 12 - - uid: 28435 + - uid: 28786 + components: + - type: Transform + pos: -49.5,77.5 + parent: 12 + - uid: 28787 + components: + - type: Transform + pos: -54.5,67.5 + parent: 12 + - uid: 28788 + components: + - type: Transform + pos: -53.5,67.5 + parent: 12 + - uid: 29061 + components: + - type: Transform + pos: -50.5,77.5 + parent: 12 + - uid: 29062 + components: + - type: Transform + pos: -55.5,72.5 + parent: 12 + - uid: 29063 + components: + - type: Transform + pos: -46.5,76.5 + parent: 12 + - uid: 29069 + components: + - type: Transform + pos: -36.5,80.5 + parent: 12 + - uid: 29072 + components: + - type: Transform + pos: -57.5,56.5 + parent: 12 + - uid: 29098 + components: + - type: Transform + pos: -55.5,71.5 + parent: 12 + - uid: 29147 + components: + - type: Transform + pos: -57.5,60.5 + parent: 12 + - uid: 29150 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-21.5 + pos: -42.5,74.5 parent: 12 - - uid: 28436 + - uid: 29151 components: - type: Transform - pos: 1.5,-21.5 - parent: 12 - - uid: 28437 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 12 - - uid: 29089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 + rot: 3.141592653589793 rad + pos: -41.5,74.5 parent: 12 - uid: 29210 components: @@ -143223,185 +144992,100 @@ entities: - type: Transform pos: -54.5,-48.5 parent: 12 - - uid: 29421 + - uid: 29346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,67.5 + pos: -57.5,61.5 parent: 12 - uid: 29422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,68.5 - parent: 12 - - uid: 29423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,69.5 - parent: 12 - - uid: 29424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,70.5 - parent: 12 - - uid: 29425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,71.5 - parent: 12 - - uid: 29426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,71.5 - parent: 12 - - uid: 29427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,72.5 - parent: 12 - - uid: 29428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,72.5 - parent: 12 - - uid: 29429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,73.5 - parent: 12 - - uid: 29430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,73.5 - parent: 12 - - uid: 29431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,73.5 - parent: 12 - - uid: 29432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,73.5 - parent: 12 - - uid: 29433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,73.5 - parent: 12 - - uid: 29434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,73.5 - parent: 12 - - uid: 29435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,73.5 - parent: 12 - - uid: 29451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,69.5 - parent: 12 - - uid: 29452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,70.5 - parent: 12 - - uid: 29453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,71.5 - parent: 12 - - uid: 29454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,72.5 - parent: 12 - - uid: 29455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,73.5 - parent: 12 - - uid: 29456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,73.5 + pos: -54.5,68.5 parent: 12 - uid: 29457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,74.5 - parent: 12 - - uid: 29458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,75.5 + pos: -41.5,-70.5 parent: 12 - uid: 29459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,75.5 + pos: -42.5,-68.5 parent: 12 - uid: 29460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,75.5 + pos: -42.5,-70.5 parent: 12 - uid: 29461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,75.5 + pos: -42.5,-67.5 parent: 12 - uid: 29462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,75.5 + pos: -42.5,-66.5 parent: 12 - uid: 29463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,75.5 + pos: -42.5,-63.5 parent: 12 - uid: 29464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,75.5 + pos: -42.5,-62.5 parent: 12 - uid: 29465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,74.5 + pos: -42.5,-61.5 + parent: 12 + - uid: 29467 + components: + - type: Transform + pos: -42.5,-60.5 + parent: 12 + - uid: 29468 + components: + - type: Transform + pos: -41.5,-60.5 + parent: 12 + - uid: 29509 + components: + - type: Transform + pos: -34.5,78.5 + parent: 12 + - uid: 29601 + components: + - type: Transform + pos: -29.5,80.5 + parent: 12 + - uid: 29602 + components: + - type: Transform + pos: -28.5,80.5 + parent: 12 + - uid: 29604 + components: + - type: Transform + pos: -27.5,80.5 + parent: 12 + - uid: 29605 + components: + - type: Transform + pos: -25.5,77.5 + parent: 12 + - uid: 29606 + components: + - type: Transform + pos: -25.5,78.5 + parent: 12 + - uid: 29822 + components: + - type: Transform + pos: -43.5,70.5 parent: 12 - uid: 29861 components: @@ -143439,11 +145123,6 @@ entities: - type: Transform pos: 60.5,74.5 parent: 12 - - uid: 30037 - components: - - type: Transform - pos: 37.5,-53.5 - parent: 12 - uid: 30038 components: - type: Transform @@ -143749,6 +145428,11 @@ entities: - type: Transform pos: -69.5,51.5 parent: 12 + - uid: 30117 + components: + - type: Transform + pos: -35.5,74.5 + parent: 12 - uid: 30118 components: - type: Transform @@ -143759,11 +145443,6 @@ entities: - type: Transform pos: -69.5,54.5 parent: 12 - - uid: 30121 - components: - - type: Transform - pos: -58.5,56.5 - parent: 12 - uid: 30122 components: - type: Transform @@ -144011,12 +145690,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,79.5 parent: 12 - - uid: 30271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,79.5 - parent: 12 - uid: 30276 components: - type: Transform @@ -144028,12 +145701,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,72.5 parent: 12 - - uid: 30298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,74.5 - parent: 12 - uid: 30299 components: - type: Transform @@ -144127,16 +145794,6 @@ entities: - type: Transform pos: -29.5,-60.5 parent: 12 - - uid: 30965 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 12 - - uid: 30966 - components: - - type: Transform - pos: 5.5,-55.5 - parent: 12 - uid: 30971 components: - type: Transform @@ -144314,18 +145971,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-64.5 parent: 12 - - uid: 31165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-64.5 - parent: 12 - - uid: 31166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-64.5 - parent: 12 - uid: 31186 components: - type: Transform @@ -144419,21 +146064,6 @@ entities: - type: Transform pos: -62.5,-30.5 parent: 12 - - uid: 31620 - components: - - type: Transform - pos: -61.5,-31.5 - parent: 12 - - uid: 31621 - components: - - type: Transform - pos: -62.5,-17.5 - parent: 12 - - uid: 31622 - components: - - type: Transform - pos: -62.5,-18.5 - parent: 12 - uid: 31623 components: - type: Transform @@ -144444,21 +146074,6 @@ entities: - type: Transform pos: -62.5,-31.5 parent: 12 - - uid: 31625 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 12 - - uid: 31626 - components: - - type: Transform - pos: -61.5,-17.5 - parent: 12 - - uid: 31627 - components: - - type: Transform - pos: -60.5,-31.5 - parent: 12 - uid: 32033 components: - type: Transform @@ -144501,16 +146116,6 @@ entities: - type: Transform pos: 48.5,-2.5 parent: 12 - - uid: 19561 - components: - - type: Transform - pos: 48.5,0.5 - parent: 12 - - uid: 25388 - components: - - type: Transform - pos: 34.5,-32.5 - parent: 12 - uid: 28921 components: - type: Transform @@ -144589,23 +146194,12 @@ entities: parent: 12 - proto: GrilleDiagonal entities: - - uid: 16526 - components: - - type: Transform - pos: -13.5,77.5 - parent: 12 - uid: 19616 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,79.5 parent: 12 - - uid: 19631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,77.5 - parent: 12 - uid: 30273 components: - type: Transform @@ -144633,31 +146227,6 @@ entities: - type: Transform pos: 61.5,64.5 parent: 12 - - uid: 20855 - components: - - type: Transform - pos: 37.5,-47.5 - parent: 12 - - uid: 21065 - components: - - type: Transform - pos: 37.5,-52.5 - parent: 12 - - uid: 21083 - components: - - type: Transform - pos: 37.5,-51.5 - parent: 12 - - uid: 21313 - components: - - type: Transform - pos: 37.5,-50.5 - parent: 12 - - uid: 21332 - components: - - type: Transform - pos: 37.5,-49.5 - parent: 12 - uid: 21369 components: - type: Transform @@ -144838,6 +146407,51 @@ entities: - type: Transform pos: 61.5,68.5 parent: 12 + - uid: 27706 + components: + - type: Transform + pos: -30.5,-70.5 + parent: 12 + - uid: 27709 + components: + - type: Transform + pos: -31.5,-70.5 + parent: 12 + - uid: 27914 + components: + - type: Transform + pos: -29.5,-70.5 + parent: 12 + - uid: 27975 + components: + - type: Transform + pos: -36.5,-70.5 + parent: 12 + - uid: 28047 + components: + - type: Transform + pos: -21.5,-70.5 + parent: 12 + - uid: 28243 + components: + - type: Transform + pos: -23.5,-71.5 + parent: 12 + - uid: 29000 + components: + - type: Transform + pos: -42.5,-69.5 + parent: 12 + - uid: 29456 + components: + - type: Transform + pos: -42.5,-64.5 + parent: 12 + - uid: 29458 + components: + - type: Transform + pos: -42.5,-65.5 + parent: 12 - proto: GroundCannabis entities: - uid: 12239 @@ -144850,6 +146464,12 @@ entities: - type: Transform pos: 62.002953,47.83639 parent: 12 + - uid: 30035 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.61752,54.792152 + parent: 12 - proto: GunSafeDisabler entities: - uid: 20857 @@ -144941,14 +146561,14 @@ entities: - uid: 11709 components: - type: Transform - rot: -43.98229715025713 rad - pos: -4.5419416,-32.28253 + rot: -12.566370614359172 rad + pos: -4.6762905,-32.320335 parent: 12 - uid: 12709 components: - type: Transform rot: -12.566370614359172 rad - pos: -5.5166283,-38.43235 + pos: -5.6384325,-38.454876 parent: 12 - uid: 13831 components: @@ -145077,6 +146697,11 @@ entities: parent: 12 - proto: Hemostat entities: + - uid: 5104 + components: + - type: Transform + pos: -22.46475,53.106586 + parent: 12 - uid: 13872 components: - type: Transform @@ -145148,6 +146773,12 @@ entities: - type: Transform pos: -1.5,-37.5 parent: 12 + - uid: 26883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-28.5 + parent: 12 - uid: 27283 components: - type: Transform @@ -145196,31 +146827,22 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,57.5 parent: 12 - - uid: 31374 + - uid: 29071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-60.5 - parent: 12 - - uid: 31379 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 6.5,-59.5 parent: 12 - - uid: 31381 + - uid: 29477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-61.5 + pos: 5.5,-62.5 parent: 12 - proto: HydroponicsToolClippers entities: - uid: 4211 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.5417747,-62.782024 + pos: 6.46257,-60.240547 parent: 12 - uid: 21230 components: @@ -145244,8 +146866,7 @@ entities: - uid: 503 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.6667747,-62.64999 + pos: 4.365348,-59.534256 parent: 12 - uid: 21358 components: @@ -145412,21 +147033,6 @@ entities: - type: Transform pos: 35.56522,-39.427387 parent: 12 -- proto: InflatableDoor - entities: - - uid: 28196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-15.5 - parent: 12 -- proto: InflatableWall - entities: - - uid: 10617 - components: - - type: Transform - pos: 49.5,0.5 - parent: 12 - proto: IngotGold entities: - uid: 17438 @@ -145496,6 +147102,14 @@ entities: rot: -12.566370614359172 rad pos: -2.5072865,-0.47896957 parent: 12 +- proto: IntercomAssembly + entities: + - uid: 4791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,18.5 + parent: 12 - proto: IntercomCommon entities: - uid: 8792 @@ -145504,6 +147118,18 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-29.5 parent: 12 + - uid: 9666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-29.5 + parent: 12 + - uid: 11722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-41.5 + parent: 12 - uid: 12063 components: - type: Transform @@ -145527,12 +147153,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,66.5 parent: 12 - - uid: 25613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-29.5 - parent: 12 - uid: 27832 components: - type: Transform @@ -145553,21 +147173,21 @@ entities: parent: 12 - proto: IntercomEngineering entities: - - uid: 2894 + - uid: 1484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,0.5 + pos: 40.5,0.5 parent: 12 - uid: 5594 components: - type: Transform pos: 21.5,-19.5 parent: 12 - - uid: 7156 + - uid: 8833 components: - type: Transform - pos: 46.5,1.5 + rot: 3.141592653589793 rad + pos: 45.5,-2.5 parent: 12 - uid: 9247 components: @@ -145659,6 +147279,12 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-37.5 parent: 12 + - uid: 19202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,59.5 + parent: 12 - uid: 25523 components: - type: Transform @@ -145720,6 +147346,12 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,38.5 parent: 12 + - uid: 28907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-34.5 + parent: 12 - proto: IntercomService entities: - uid: 4750 @@ -145734,6 +147366,12 @@ entities: rot: 3.141592653589793 rad pos: -40.5,21.5 parent: 12 + - uid: 20552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-53.5 + parent: 12 - uid: 23566 components: - type: Transform @@ -145794,12 +147432,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-25.5 parent: 12 - - uid: 12060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-41.5 - parent: 12 - uid: 23807 components: - type: Transform @@ -145847,16 +147479,16 @@ entities: parent: 12 - proto: Jukebox entities: + - uid: 509 + components: + - type: Transform + pos: -51.5,76.5 + parent: 12 - uid: 13725 components: - type: Transform pos: 21.5,26.5 parent: 12 - - uid: 29654 - components: - - type: Transform - pos: -43.5,68.5 - parent: 12 - uid: 29655 components: - type: Transform @@ -145908,12 +147540,6 @@ entities: rot: -31.415926535897945 rad pos: -37.056793,-58.403534 parent: 12 - - uid: 31363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.457253,-17.519176 - parent: 12 - uid: 31590 components: - type: Transform @@ -145989,6 +147615,11 @@ entities: parent: 12 - proto: KitchenReagentGrinder entities: + - uid: 215 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 12 - uid: 1949 components: - type: Transform @@ -146158,6 +147789,11 @@ entities: rot: 3.141592653589793 rad pos: -32.44526,29.851074 parent: 12 + - uid: 29186 + components: + - type: Transform + pos: -55.46656,61.910522 + parent: 12 - uid: 30347 components: - type: Transform @@ -146348,6 +147984,11 @@ entities: - type: Transform pos: 29.5,51.5 parent: 12 + - uid: 26502 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 12 - proto: LockerBotanistFilled entities: - uid: 24010 @@ -146444,10 +148085,10 @@ entities: parent: 12 - proto: LockerElectricalSuppliesFilled entities: - - uid: 4523 + - uid: 4803 components: - type: Transform - pos: 16.5,-19.5 + pos: 17.5,-17.5 parent: 12 - uid: 5949 components: @@ -146474,6 +148115,11 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 12 + - uid: 19653 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 12 - uid: 20258 components: - type: Transform @@ -146484,6 +148130,16 @@ entities: - type: Transform pos: 33.5,-12.5 parent: 12 + - uid: 28202 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 12 + - uid: 28868 + components: + - type: Transform + pos: 36.5,-50.5 + parent: 12 - uid: 32071 components: - type: Transform @@ -146506,22 +148162,20 @@ entities: - type: Transform pos: 32.5,-21.5 parent: 12 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 2501 + - uid: 17599 components: - type: Transform - pos: 13.5,-14.5 + pos: 29.5,-23.5 parent: 12 - - uid: 2515 + - uid: 17773 components: - type: Transform - pos: 12.5,-14.5 + pos: 29.5,-21.5 parent: 12 - - uid: 3238 + - uid: 18267 components: - type: Transform - pos: 14.5,-14.5 + pos: 29.5,-22.5 parent: 12 - proto: LockerEvidence entities: @@ -146545,11 +148199,6 @@ entities: - type: Transform pos: -46.5,59.5 parent: 12 - - uid: 8724 - components: - - type: Transform - pos: 52.5,-34.5 - parent: 12 - uid: 12241 components: - type: Transform @@ -146719,13 +148368,30 @@ entities: - type: Transform pos: -42.5,-30.5 parent: 12 -- proto: LockerSecurityFilled +- proto: LockerScientist entities: - - uid: 8719 + - uid: 9298 components: - type: Transform - pos: 53.5,-32.5 + pos: 47.5,58.5 parent: 12 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9548 + - 9541 + - 9503 + - 9488 + - 9567 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurityFilled + entities: - uid: 20845 components: - type: Transform @@ -146751,6 +148417,11 @@ entities: - type: Transform pos: 23.5,58.5 parent: 12 + - uid: 27394 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 12 - proto: LockerSteel entities: - uid: 3794 @@ -146963,8 +148634,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -146981,10 +148652,13 @@ entities: showEnts: False occludes: True ents: - - 28255 - - 28256 - - 28257 + - 6284 - 6295 + - 28257 + - 28256 + - 28255 + - 6285 + - 6286 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -147013,26 +148687,47 @@ entities: parent: 12 - proto: LockerWeldingSuppliesFilled entities: + - uid: 2389 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 12 - uid: 4195 components: - type: Transform pos: 47.5,53.5 parent: 12 + - uid: 8968 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 12 - uid: 26203 components: - type: Transform pos: 4.5,-14.5 parent: 12 - - uid: 27154 + - uid: 26712 components: - type: Transform - pos: -54.5,-17.5 + pos: -2.5,-18.5 + parent: 12 + - uid: 26783 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 12 + - uid: 28869 + components: + - type: Transform + pos: 44.5,-41.5 parent: 12 - proto: LogicGateOr entities: - uid: 25547 components: - type: Transform + anchored: True rot: 3.141592653589793 rad pos: 62.5,-2.5 parent: 12 @@ -147048,9 +148743,13 @@ entities: - Output: DoorBolt 12692: - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - uid: 25549 components: - type: Transform + anchored: True pos: 60.5,-2.5 parent: 12 - type: DeviceLinkSink @@ -147059,9 +148758,13 @@ entities: linkedPorts: 25560: - Output: InputB + - type: Physics + canCollide: False + bodyType: Static - uid: 25550 components: - type: Transform + anchored: True rot: -1.5707963267948966 rad pos: 60.5,-1.5 parent: 12 @@ -147071,9 +148774,13 @@ entities: linkedPorts: 25560: - Output: InputA + - type: Physics + canCollide: False + bodyType: Static - uid: 25560 components: - type: Transform + anchored: True pos: 61.5,-2.5 parent: 12 - type: DeviceLinkSink @@ -147084,6 +148791,44 @@ entities: - Output: DoorBolt 9169: - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 26946 + components: + - type: Transform + anchored: True + rot: 3.141592653589793 rad + pos: 60.5,-34.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8034: + - Output: DoorBolt + 8035: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 27073 + components: + - type: Transform + anchored: True + pos: 59.5,-35.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8037: + - Output: DoorBolt + 8036: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - proto: LootSpawnerCableCoil entities: - uid: 9665 @@ -147286,6 +149031,17 @@ entities: - type: Transform pos: -43.5,-35.5 parent: 12 + - uid: 15115 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: 48.5,60.5 + parent: 12 + - type: ApcPowerReceiver + powerLoad: 1 + - type: Physics + bodyType: Dynamic - proto: MachineArtifactAnalyzer entities: - uid: 1696 @@ -147376,20 +149132,15 @@ entities: ents: [] - proto: MachineFrameDestroyed entities: - - uid: 2575 - components: - - type: Transform - pos: 35.5,-30.5 - parent: 12 - uid: 13522 components: - type: Transform pos: 53.5,25.5 parent: 12 - - uid: 32144 + - uid: 29064 components: - type: Transform - pos: -61.5,-52.5 + pos: -62.5,-54.5 parent: 12 - proto: MagazinePistolSubMachineGunTopMounted entities: @@ -147511,11 +149262,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,68.5 parent: 12 - - uid: 5957 - components: - - type: Transform - pos: 50.5,1.5 - parent: 12 - uid: 11490 components: - type: Transform @@ -147581,6 +149327,36 @@ entities: - type: Transform pos: -40.5,-51.5 parent: 12 + - uid: 28813 + components: + - type: Transform + pos: 35.5,-46.5 + parent: 12 + - uid: 28888 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 12 + - uid: 29622 + components: + - type: Transform + pos: -27.5,77.5 + parent: 12 + - uid: 29623 + components: + - type: Transform + pos: -29.5,75.5 + parent: 12 + - uid: 29784 + components: + - type: Transform + pos: -43.5,73.5 + parent: 12 + - uid: 29872 + components: + - type: Transform + pos: -52.5,49.5 + parent: 12 - uid: 31676 components: - type: Transform @@ -147593,31 +149369,41 @@ entities: parent: 12 - proto: MaintenancePlantSpawner entities: - - uid: 771 - components: - - type: Transform - pos: -56.5,-17.5 - parent: 12 - uid: 1078 components: - type: Transform pos: -46.5,-16.5 parent: 12 + - uid: 2400 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 12 - uid: 3195 components: - type: Transform pos: 44.5,63.5 parent: 12 - - uid: 10605 + - uid: 10923 components: - type: Transform - pos: 49.5,-3.5 + pos: 51.5,-4.5 parent: 12 - uid: 11240 components: - type: Transform pos: -3.5,17.5 parent: 12 + - uid: 17850 + components: + - type: Transform + pos: -33.5,74.5 + parent: 12 + - uid: 18562 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 12 - uid: 24498 components: - type: Transform @@ -147648,15 +149434,35 @@ entities: - type: Transform pos: -7.5,23.5 parent: 12 + - uid: 26677 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 12 + - uid: 27384 + components: + - type: Transform + pos: -56.5,-19.5 + parent: 12 - uid: 27827 components: - type: Transform pos: -47.5,-50.5 parent: 12 - - uid: 28049 + - uid: 28826 components: - type: Transform - pos: 2.5,-23.5 + pos: 44.5,-42.5 + parent: 12 + - uid: 29827 + components: + - type: Transform + pos: -30.5,73.5 + parent: 12 + - uid: 29869 + components: + - type: Transform + pos: -51.5,60.5 parent: 12 - uid: 30520 components: @@ -147690,10 +149496,10 @@ entities: - type: Transform pos: 33.5,67.5 parent: 12 - - uid: 9298 + - uid: 9711 components: - type: Transform - pos: 48.5,-3.5 + pos: 48.5,1.5 parent: 12 - uid: 13004 components: @@ -147790,20 +149596,60 @@ entities: - type: Transform pos: 28.5,14.5 parent: 12 + - uid: 26891 + components: + - type: Transform + pos: 48.5,62.5 + parent: 12 + - uid: 26913 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 12 - uid: 28274 components: - type: Transform pos: -28.5,-16.5 parent: 12 - - uid: 28418 + - uid: 28886 components: - type: Transform - pos: 49.5,61.5 + pos: 42.5,-42.5 parent: 12 - - uid: 28419 + - uid: 29620 components: - type: Transform - pos: 48.5,61.5 + pos: -28.5,79.5 + parent: 12 + - uid: 29621 + components: + - type: Transform + pos: -29.5,79.5 + parent: 12 + - uid: 29624 + components: + - type: Transform + pos: -29.5,77.5 + parent: 12 + - uid: 29636 + components: + - type: Transform + pos: -46.5,66.5 + parent: 12 + - uid: 29646 + components: + - type: Transform + pos: -26.5,79.5 + parent: 12 + - uid: 29870 + components: + - type: Transform + pos: -51.5,56.5 + parent: 12 + - uid: 30120 + components: + - type: Transform + pos: -34.5,74.5 parent: 12 - uid: 31567 components: @@ -147815,16 +149661,6 @@ entities: - type: Transform pos: -13.5,0.5 parent: 12 - - uid: 31677 - components: - - type: Transform - pos: -60.5,-28.5 - parent: 12 - - uid: 31678 - components: - - type: Transform - pos: -62.5,-23.5 - parent: 12 - proto: MaintenanceWeaponSpawner entities: - uid: 25849 @@ -147832,6 +149668,16 @@ entities: - type: Transform pos: 55.5,20.5 parent: 12 + - uid: 28817 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 12 + - uid: 29619 + components: + - type: Transform + pos: -27.5,76.5 + parent: 12 - uid: 30508 components: - type: Transform @@ -147842,8 +149688,17 @@ entities: - uid: 4565 components: - type: Transform - pos: 47.514965,1.5594273 + rot: -37.69911184307754 rad + pos: 49.4561,-3.4684215 parent: 12 + - type: Blocking + blockingToggleActionEntity: 11047 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 11047 - proto: Matchbox entities: - uid: 6885 @@ -147888,6 +149743,18 @@ entities: rot: -6.283185307179586 rad pos: -13.621389,-0.07474756 parent: 12 +- proto: Mattress + entities: + - uid: 29008 + components: + - type: Transform + pos: -61.5,-52.5 + parent: 12 + - uid: 29146 + components: + - type: Transform + pos: -53.5,57.5 + parent: 12 - proto: MechEquipmentGrabberSmall entities: - uid: 30401 @@ -147999,8 +149866,7 @@ entities: - uid: 9266 components: - type: Transform - rot: -37.69911184307754 rad - pos: 55.502457,-33.19831 + pos: 55.495014,-33.44814 parent: 12 - uid: 9267 components: @@ -148080,11 +149946,6 @@ entities: - type: Transform pos: 3.3725653,-32.354176 parent: 12 - - uid: 6777 - components: - - type: Transform - pos: 28.47894,-15.335911 - parent: 12 - proto: MedkitToxinFilled entities: - uid: 8893 @@ -148130,6 +149991,14 @@ entities: - type: Transform pos: 34.209034,45.799026 parent: 12 +- proto: MinimoogInstrument + entities: + - uid: 2078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,76.5 + parent: 12 - proto: MiningDrill entities: - uid: 32188 @@ -148159,20 +150028,8 @@ entities: - type: Transform pos: -12.5,52.5 parent: 12 -- proto: ModularReceiver - entities: - - uid: 19823 - components: - - type: Transform - pos: 51.5,-3.5 - parent: 12 - proto: MonkeyCubeWrapped entities: - - uid: 19619 - components: - - type: Transform - pos: -22.51786,53.46946 - parent: 12 - uid: 21391 components: - type: Transform @@ -148185,11 +150042,6 @@ entities: parent: 12 - proto: MopBucket entities: - - uid: 25384 - components: - - type: Transform - pos: 36.5,-32.5 - parent: 12 - uid: 28404 components: - type: Transform @@ -148204,12 +150056,6 @@ entities: parent: 12 - proto: MopItem entities: - - uid: 8427 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 37.37422,-32.282562 - parent: 12 - uid: 12262 components: - type: Transform @@ -148368,11 +150214,6 @@ entities: - type: Transform pos: -32.59243,-21.422949 parent: 12 - - uid: 5914 - components: - - type: Transform - pos: 33.771404,-18.223875 - parent: 12 - uid: 5915 components: - type: Transform @@ -148383,11 +150224,6 @@ entities: - type: Transform pos: 43.0754,-32.38356 parent: 12 - - uid: 9244 - components: - - type: Transform - pos: 43.055523,-37.383503 - parent: 12 - uid: 17609 components: - type: Transform @@ -148454,21 +150290,21 @@ entities: - type: Transform pos: 55.5,9.5 parent: 12 - - uid: 704 + - uid: 2684 components: - type: Transform - pos: -54.5,-32.5 + pos: -53.5,-29.5 + parent: 12 + - uid: 2865 + components: + - type: Transform + pos: -30.5,-14.5 parent: 12 - uid: 5639 components: - type: Transform pos: 26.5,11.5 parent: 12 - - uid: 6197 - components: - - type: Transform - pos: 33.5,-42.5 - parent: 12 - uid: 8862 components: - type: Transform @@ -148479,6 +150315,11 @@ entities: - type: Transform pos: 25.5,12.5 parent: 12 + - uid: 10342 + components: + - type: Transform + pos: -59.5,-33.5 + parent: 12 - uid: 12122 components: - type: Transform @@ -148512,11 +150353,6 @@ entities: - type: Transform pos: 25.5,11.5 parent: 12 - - uid: 22708 - components: - - type: Transform - pos: -55.5,-35.5 - parent: 12 - uid: 23132 components: - type: Transform @@ -148552,33 +150388,33 @@ entities: - type: Transform pos: 4.5,-20.5 parent: 12 + - uid: 28709 + components: + - type: Transform + pos: 34.5,-52.5 + parent: 12 - uid: 29291 components: - type: Transform pos: -27.5,60.5 parent: 12 + - uid: 29429 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 12 + - uid: 29990 + components: + - type: Transform + pos: -48.5,52.5 + parent: 12 - uid: 30706 components: - type: Transform pos: -15.5,-60.5 parent: 12 - - uid: 31445 - components: - - type: Transform - pos: 4.5,-55.5 - parent: 12 - - uid: 31694 - components: - - type: Transform - pos: -60.5,-30.5 - parent: 12 - proto: NitrogenTankFilled entities: - - uid: 19265 - components: - - type: Transform - pos: 55.662266,-34.59952 - parent: 12 - uid: 23718 components: - type: Transform @@ -148678,6 +150514,13 @@ entities: - 31737 - proto: NodeScanner entities: + - uid: 9567 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 32092 components: - type: Transform @@ -148734,10 +150577,10 @@ entities: parent: 12 - proto: NuclearBombKeg entities: - - uid: 30426 + - uid: 29046 components: - type: Transform - pos: -48.5,69.5 + pos: -54.5,70.5 parent: 12 - proto: NutimovCircuitBoard entities: @@ -148759,6 +150602,11 @@ entities: - type: Transform pos: -10.5,-62.5 parent: 12 + - uid: 5263 + components: + - type: Transform + pos: -24.5,54.5 + parent: 12 - uid: 9439 components: - type: Transform @@ -148800,6 +150648,11 @@ entities: - type: Transform pos: 38.5,6.5 parent: 12 + - uid: 149 + components: + - type: Transform + pos: 14.5,12.5 + parent: 12 - uid: 755 components: - type: Transform @@ -148810,10 +150663,10 @@ entities: - type: Transform pos: 27.5,11.5 parent: 12 - - uid: 6679 + - uid: 5404 components: - type: Transform - pos: 33.5,-43.5 + pos: -30.5,-13.5 parent: 12 - uid: 7125 components: @@ -148835,11 +150688,6 @@ entities: - type: Transform pos: 81.5,-32.5 parent: 12 - - uid: 10631 - components: - - type: Transform - pos: 13.5,12.5 - parent: 12 - uid: 16456 components: - type: Transform @@ -148900,38 +150748,38 @@ entities: - type: Transform pos: 27.5,12.5 parent: 12 - - uid: 27448 + - uid: 26960 components: - type: Transform - pos: -56.5,-35.5 + pos: 34.5,-53.5 + parent: 12 + - uid: 27022 + components: + - type: Transform + pos: -59.5,-32.5 parent: 12 - uid: 29290 components: - type: Transform pos: -27.5,61.5 parent: 12 + - uid: 29427 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 12 + - uid: 29991 + components: + - type: Transform + pos: -51.5,59.5 + parent: 12 - uid: 30707 components: - type: Transform pos: -15.5,-61.5 parent: 12 - - uid: 31446 - components: - - type: Transform - pos: 4.5,-54.5 - parent: 12 - - uid: 31696 - components: - - type: Transform - pos: -60.5,-18.5 - parent: 12 - proto: OxygenTankFilled entities: - - uid: 6245 - components: - - type: Transform - pos: 55.258656,-34.617867 - parent: 12 - uid: 23717 components: - type: Transform @@ -148968,10 +150816,9 @@ entities: parent: 12 - proto: PaintingAmogusTriptych entities: - - uid: 31360 + - uid: 6210 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,-16.5 parent: 12 - proto: PaintingCafeTerraceAtNight @@ -149011,10 +150858,11 @@ entities: parent: 12 - proto: PaintingTheSonOfMan entities: - - uid: 5160 + - uid: 26944 components: - type: Transform - pos: -57.5,-12.5 + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 parent: 12 - proto: Paper entities: @@ -149083,6 +150931,21 @@ entities: - Make sure the emitters are not shooting at the tesla coils or grounding rods - [bold]WEAR INSULATED GLOVES WHEN WORKING ON THE TESLA!!![/bold] + - uid: 29006 + components: + - type: Transform + pos: -45.5,61.5 + parent: 12 + - uid: 29070 + components: + - type: Transform + pos: -42.5,61.5 + parent: 12 + - uid: 29486 + components: + - type: Transform + pos: -48.5,61.5 + parent: 12 - uid: 29970 components: - type: Transform @@ -149543,6 +151406,17 @@ entities: - type: Transform pos: -8.548462,5.6872296 parent: 12 + - uid: 24321 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 + - uid: 25200 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 59.62378,12.4487915 + parent: 12 - proto: Pen entities: - uid: 1841 @@ -149934,6 +151808,17 @@ entities: - type: Transform pos: -23.507654,-58.359375 parent: 12 + - uid: 30032 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.225544,54.748913 + parent: 12 + - uid: 30033 + components: + - type: Transform + pos: -53.67503,54.401253 + parent: 12 - proto: PillTricordrazine entities: - uid: 3197 @@ -149997,6 +151882,11 @@ entities: - type: Transform pos: 24.5,-6.5 parent: 12 + - uid: 12047 + components: + - type: Transform + pos: 13.5,12.5 + parent: 12 - uid: 25479 components: - type: Transform @@ -150083,6 +151973,16 @@ entities: - type: Transform pos: 35.5,16.5 parent: 12 + - uid: 29629 + components: + - type: Transform + pos: -29.5,76.5 + parent: 12 + - uid: 29630 + components: + - type: Transform + pos: -27.5,76.5 + parent: 12 - proto: PlayerStationAi entities: - uid: 9471 @@ -150154,6 +152054,14 @@ entities: - type: Transform pos: 56.5,61.5 parent: 12 +- proto: PlushieLamp + entities: + - uid: 24494 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 36.280617,-46.363327 + parent: 12 - proto: PlushieLizard entities: - uid: 14195 @@ -150235,11 +152143,6 @@ entities: parent: 12 - proto: PortableGeneratorJrPacman entities: - - uid: 149 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 12 - uid: 2978 components: - type: Transform @@ -150250,10 +152153,10 @@ entities: - type: Transform pos: 37.5,-18.5 parent: 12 - - uid: 5250 + - uid: 6970 components: - type: Transform - pos: 42.5,-39.5 + pos: -55.5,-37.5 parent: 12 - uid: 11324 components: @@ -150265,6 +152168,11 @@ entities: - type: Transform pos: 40.5,10.5 parent: 12 + - uid: 12332 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 12 - uid: 17963 components: - type: Transform @@ -150285,11 +152193,6 @@ entities: - type: Transform pos: -35.5,-10.5 parent: 12 - - uid: 27837 - components: - - type: Transform - pos: -57.5,-35.5 - parent: 12 - uid: 28278 components: - type: Transform @@ -150298,10 +152201,10 @@ entities: parent: 12 - type: Physics bodyType: Static - - uid: 31448 + - uid: 29345 components: - type: Transform - pos: 4.5,-52.5 + pos: 3.5,-47.5 parent: 12 - uid: 32132 components: @@ -150328,14 +152231,23 @@ entities: parent: 12 - type: Physics bodyType: Static - - uid: 8799 + - uid: 2419 components: - type: Transform anchored: True - pos: 40.5,4.5 + pos: 40.5,1.5 parent: 12 - type: Physics bodyType: Static + - uid: 25388 + components: + - type: Transform + pos: 62.5,9.5 + parent: 12 + - type: PowerSupplier + voltage: Medium + - type: PowerSwitchable + activeIndex: 1 - proto: PortableGeneratorSuperPacman entities: - uid: 2465 @@ -150383,11 +152295,6 @@ entities: - type: Transform pos: -11.5,24.5 parent: 12 - - uid: 16586 - components: - - type: Transform - pos: 26.5,-14.5 - parent: 12 - uid: 18161 components: - type: Transform @@ -150477,6 +152384,13 @@ entities: - type: Transform pos: 25.5,4.5 parent: 12 +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 5313 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 12 - proto: PosterContrabandC20r entities: - uid: 28267 @@ -150520,6 +152434,13 @@ entities: - type: Transform pos: -51.5,-14.5 parent: 12 +- proto: PosterContrabandGreyTide + entities: + - uid: 29627 + components: + - type: Transform + pos: -37.5,80.5 + parent: 12 - proto: PosterContrabandHackingGuide entities: - uid: 28717 @@ -150527,6 +152448,11 @@ entities: - type: Transform pos: 59.5,0.5 parent: 12 + - uid: 29139 + components: + - type: Transform + pos: -35.5,79.5 + parent: 12 - proto: PosterContrabandHighEffectEngineering entities: - uid: 16356 @@ -150556,6 +152482,16 @@ entities: - type: Transform pos: -26.5,-14.5 parent: 12 + - uid: 29066 + components: + - type: Transform + pos: -52.5,59.5 + parent: 12 + - uid: 29140 + components: + - type: Transform + pos: -38.5,75.5 + parent: 12 - proto: PosterContrabandMissingSpacepen entities: - uid: 393 @@ -150585,6 +152521,13 @@ entities: - type: Transform pos: -0.5,-64.5 parent: 12 +- proto: PosterContrabandRise + entities: + - uid: 27714 + components: + - type: Transform + pos: -39.5,79.5 + parent: 12 - proto: PosterContrabandSpaceUp entities: - uid: 30228 @@ -150592,6 +152535,13 @@ entities: - type: Transform pos: -17.5,59.5 parent: 12 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 29036 + components: + - type: Transform + pos: -28.5,76.5 + parent: 12 - proto: PosterContrabandTools entities: - uid: 8873 @@ -150606,6 +152556,11 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,46.5 parent: 12 + - uid: 29310 + components: + - type: Transform + pos: -36.5,75.5 + parent: 12 - proto: PosterContrabandWehWatches entities: - uid: 11523 @@ -150623,11 +152578,23 @@ entities: parent: 12 - proto: PosterLegitCohibaRobustoAd entities: + - uid: 19645 + components: + - type: Transform + pos: -58.5,-16.5 + parent: 12 - uid: 30238 components: - type: Transform pos: -14.5,57.5 parent: 12 +- proto: PosterLegitDickGumshue + entities: + - uid: 25412 + components: + - type: Transform + pos: -56.5,63.5 + parent: 12 - proto: PosterLegitFoamForceAd entities: - uid: 30231 @@ -150650,6 +152617,13 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,65.5 parent: 12 +- proto: PosterLegitHighClassMartini + entities: + - uid: 28794 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 12 - proto: PosterLegitIan entities: - uid: 30229 @@ -150722,10 +152696,11 @@ entities: - type: Transform pos: -25.5,-10.5 parent: 12 - - uid: 9144 + - uid: 11304 components: - type: Transform - pos: 29.5,-15.5 + rot: 1.5707963267948966 rad + pos: 28.5,-14.5 parent: 12 - uid: 22542 components: @@ -150760,6 +152735,11 @@ entities: - type: Transform pos: -41.5,-40.5 parent: 12 + - uid: 19182 + components: + - type: Transform + pos: 47.5,61.5 + parent: 12 - proto: PosterLegitSecWatch entities: - uid: 10271 @@ -150779,17 +152759,18 @@ entities: - uid: 31468 components: - type: Transform - pos: 6.5,-61.5 + pos: 6.5320144,-61.325264 parent: 12 - uid: 31469 components: - type: Transform - pos: 6.5,-60.5 + pos: 5.5015607,-62.495205 parent: 12 - uid: 31470 components: - type: Transform - pos: 6.5,-59.5 + rot: 4.440892098500626E-16 rad + pos: 6.508507,-59.615746 parent: 12 - proto: PottedPlant1 entities: @@ -151062,11 +153043,6 @@ entities: - type: Transform pos: 52.5,59.5 parent: 12 - - uid: 24085 - components: - - type: Transform - pos: 48.5,59.5 - parent: 12 - uid: 24114 components: - type: Transform @@ -151260,11 +153236,6 @@ entities: - type: Transform pos: 44.5,-32.5 parent: 12 - - uid: 9233 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 12 - uid: 9814 components: - type: Transform @@ -151388,16 +153359,6 @@ entities: rot: -56.54866776461632 rad pos: -9.513435,-49.592167 parent: 12 - - uid: 4481 - components: - - type: Transform - pos: 10.430595,-16.35749 - parent: 12 - - uid: 4525 - components: - - type: Transform - pos: 10.601824,-16.4962 - parent: 12 - uid: 31574 components: - type: Transform @@ -151559,12 +153520,6 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 12 - - uid: 2459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 12 - uid: 2460 components: - type: Transform @@ -151782,12 +153737,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-15.5 parent: 12 - - uid: 5186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 12 - uid: 5216 components: - type: Transform @@ -151891,12 +153840,24 @@ entities: rot: 3.141592653589793 rad pos: -42.5,32.5 parent: 12 + - uid: 6348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 12 - uid: 6668 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-53.5 parent: 12 + - uid: 6687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-45.5 + parent: 12 - uid: 6698 components: - type: Transform @@ -152024,6 +153985,11 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-52.5 parent: 12 + - uid: 6789 + components: + - type: Transform + pos: 37.5,4.5 + parent: 12 - uid: 6808 components: - type: Transform @@ -152342,12 +154308,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-5.5 parent: 12 - - uid: 10393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-2.5 - parent: 12 - uid: 10541 components: - type: Transform @@ -152389,17 +154349,18 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,33.5 parent: 12 - - uid: 10908 - components: - - type: Transform - pos: 35.5,4.5 - parent: 12 - uid: 11125 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-33.5 parent: 12 + - uid: 11128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,74.5 + parent: 12 - uid: 11223 components: - type: Transform @@ -153069,18 +155030,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,53.5 parent: 12 - - uid: 16869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,57.5 - parent: 12 - - uid: 16870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,55.5 - parent: 12 - uid: 16871 components: - type: Transform @@ -153174,12 +155123,6 @@ entities: - type: Transform pos: 46.5,41.5 parent: 12 - - uid: 17532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,64.5 - parent: 12 - uid: 17751 components: - type: Transform @@ -153527,12 +155470,42 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-11.5 parent: 12 + - uid: 26669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 12 - uid: 26746 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-5.5 parent: 12 + - uid: 26787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,55.5 + parent: 12 + - uid: 26850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 12 + - uid: 26918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,74.5 + parent: 12 + - uid: 26943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-43.5 + parent: 12 - uid: 26976 components: - type: Transform @@ -153583,12 +155556,6 @@ entities: - type: Transform pos: -33.5,-41.5 parent: 12 - - uid: 30279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,73.5 - parent: 12 - uid: 30290 components: - type: Transform @@ -153672,11 +155639,10 @@ entities: parent: 12 - proto: PoweredlightCyan entities: - - uid: 29615 + - uid: 28985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,67.5 + pos: -47.5,75.5 parent: 12 - proto: PoweredlightEmpty entities: @@ -153694,19 +155660,19 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,62.5 parent: 12 - - uid: 29610 + - uid: 20049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,70.5 + rot: 3.141592653589793 rad + pos: -52.5,68.5 parent: 12 - proto: PoweredlightPink entities: - - uid: 29602 + - uid: 19378 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,69.5 + pos: -53.5,74.5 parent: 12 - proto: PoweredLightPostSmall entities: @@ -153726,12 +155692,18 @@ entities: - type: Transform pos: 26.5,90.5 parent: 12 -- proto: PoweredlightRed - entities: - - uid: 29616 + - uid: 30029 components: - type: Transform - pos: -46.5,72.5 + pos: -20.5,76.5 + parent: 12 +- proto: PoweredlightRed + entities: + - uid: 9555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,69.5 parent: 12 - uid: 31339 components: @@ -153771,6 +155743,12 @@ entities: rot: 3.141592653589793 rad pos: -55.5,21.5 parent: 12 + - uid: 1505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,28.5 + parent: 12 - uid: 2033 components: - type: Transform @@ -153800,11 +155778,11 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,11.5 parent: 12 - - uid: 2739 + - uid: 2424 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-31.5 + pos: -57.5,-15.5 parent: 12 - uid: 2855 components: @@ -153902,6 +155880,12 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 12 + - uid: 5521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 12 - uid: 5833 components: - type: Transform @@ -153920,11 +155904,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-28.5 parent: 12 - - uid: 6758 - components: - - type: Transform - pos: 34.5,-41.5 - parent: 12 - uid: 6759 components: - type: Transform @@ -153942,11 +155921,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-16.5 parent: 12 - - uid: 7270 - components: - - type: Transform - pos: -55.5,-34.5 - parent: 12 - uid: 7279 components: - type: Transform @@ -153994,12 +155968,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-18.5 parent: 12 - - uid: 8836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-38.5 - parent: 12 - uid: 8838 components: - type: Transform @@ -154034,12 +156002,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-37.5 parent: 12 - - uid: 8847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-45.5 - parent: 12 - uid: 8850 components: - type: Transform @@ -154090,29 +156052,11 @@ entities: - type: Transform pos: -3.5,65.5 parent: 12 - - uid: 9239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,58.5 - parent: 12 - - uid: 9240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,66.5 - parent: 12 - uid: 9242 components: - type: Transform pos: -15.5,65.5 parent: 12 - - uid: 9245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,66.5 - parent: 12 - uid: 9437 components: - type: Transform @@ -154142,11 +156086,6 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-0.5 parent: 12 - - uid: 9548 - components: - - type: Transform - pos: 16.5,12.5 - parent: 12 - uid: 9853 components: - type: Transform @@ -154158,24 +156097,12 @@ entities: - type: Transform pos: -50.5,-42.5 parent: 12 - - uid: 10345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-19.5 - parent: 12 - uid: 10403 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-10.5 parent: 12 - - uid: 10803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 12 - uid: 10886 components: - type: Transform @@ -154200,12 +156127,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,11.5 parent: 12 - - uid: 11520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,58.5 - parent: 12 - uid: 12005 components: - type: Transform @@ -154257,12 +156178,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,27.5 parent: 12 - - uid: 12933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 12 - uid: 12944 components: - type: Transform @@ -154299,11 +156214,22 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,53.5 parent: 12 + - uid: 15687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,58.5 + parent: 12 - uid: 16209 components: - type: Transform pos: 57.5,-13.5 parent: 12 + - uid: 16369 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 12 - uid: 16554 components: - type: Transform @@ -154333,17 +156259,11 @@ entities: rot: 3.141592653589793 rad pos: 51.5,29.5 parent: 12 - - uid: 17850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,42.5 - parent: 12 - uid: 17923 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,46.5 + pos: -46.5,37.5 parent: 12 - uid: 17971 components: @@ -154385,6 +156305,12 @@ entities: - type: Transform pos: -26.5,51.5 parent: 12 + - uid: 19514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,79.5 + parent: 12 - uid: 19660 components: - type: Transform @@ -154426,6 +156352,12 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,32.5 parent: 12 + - uid: 21083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 12 - uid: 21274 components: - type: Transform @@ -154472,12 +156404,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 12 - - uid: 22160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-1.5 - parent: 12 - uid: 22163 components: - type: Transform @@ -154490,6 +156416,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,11.5 parent: 12 + - uid: 22336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-32.5 + parent: 12 - uid: 22709 components: - type: Transform @@ -154542,6 +156474,11 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-41.5 parent: 12 + - uid: 25201 + components: + - type: Transform + pos: 49.5,1.5 + parent: 12 - uid: 25368 components: - type: Transform @@ -154592,10 +156529,17 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-3.5 parent: 12 - - uid: 26853 + - uid: 27019 components: - type: Transform - pos: 16.5,10.5 + rot: -1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 12 + - uid: 27059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-53.5 parent: 12 - uid: 27067 components: @@ -154609,6 +156553,12 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-14.5 parent: 12 + - uid: 27227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-38.5 + parent: 12 - uid: 27259 components: - type: Transform @@ -154644,6 +156594,12 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-13.5 parent: 12 + - uid: 28298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-67.5 + parent: 12 - uid: 28458 components: - type: Transform @@ -154676,18 +156632,24 @@ entities: - type: Transform pos: 16.5,5.5 parent: 12 - - uid: 28920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,1.5 - parent: 12 - uid: 29285 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,64.5 parent: 12 + - uid: 29626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,61.5 + parent: 12 + - uid: 29643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,65.5 + parent: 12 - uid: 29656 components: - type: Transform @@ -154711,6 +156673,11 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-39.5 parent: 12 + - uid: 30133 + components: + - type: Transform + pos: -28.5,75.5 + parent: 12 - uid: 30269 components: - type: Transform @@ -154744,12 +156711,6 @@ entities: - type: Transform pos: 5.5,-59.5 parent: 12 - - uid: 31394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-67.5 - parent: 12 - uid: 31508 components: - type: Transform @@ -154776,6 +156737,12 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-23.5 parent: 12 + - uid: 28973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,57.5 + parent: 12 - uid: 31337 components: - type: Transform @@ -154864,16 +156831,16 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-23.5 parent: 12 + - uid: 2683 + components: + - type: Transform + pos: 40.5,2.5 + parent: 12 - uid: 2919 components: - type: Transform pos: -8.5,-45.5 parent: 12 - - uid: 3064 - components: - - type: Transform - pos: 6.5,-62.5 - parent: 12 - uid: 3619 components: - type: Transform @@ -154895,21 +156862,16 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 12 - - uid: 4551 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 12 - - uid: 4552 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 12 - uid: 4608 components: - type: Transform pos: 11.5,-2.5 parent: 12 + - uid: 4613 + components: + - type: Transform + pos: -25.5,56.5 + parent: 12 - uid: 4943 components: - type: Transform @@ -154921,20 +156883,10 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-13.5 parent: 12 - - uid: 5873 + - uid: 5817 components: - type: Transform - pos: 29.5,-23.5 - parent: 12 - - uid: 5874 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 12 - - uid: 5875 - components: - - type: Transform - pos: 29.5,-22.5 + pos: -45.5,73.5 parent: 12 - uid: 5890 components: @@ -154951,6 +156903,11 @@ entities: - type: Transform pos: 60.5,-18.5 parent: 12 + - uid: 6257 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 12 - uid: 7332 components: - type: Transform @@ -154962,11 +156919,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-49.5 parent: 12 - - uid: 8713 - components: - - type: Transform - pos: 50.5,1.5 - parent: 12 - uid: 8868 components: - type: Transform @@ -154983,11 +156935,6 @@ entities: - type: Transform pos: 52.5,1.5 parent: 12 - - uid: 9214 - components: - - type: Transform - pos: 45.5,-36.5 - parent: 12 - uid: 9219 components: - type: Transform @@ -155016,6 +156963,12 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-21.5 parent: 12 + - uid: 9590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-30.5 + parent: 12 - uid: 9599 components: - type: Transform @@ -155053,6 +157006,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-4.5 parent: 12 + - uid: 10907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-24.5 + parent: 12 - uid: 10943 components: - type: Transform @@ -155097,10 +157056,10 @@ entities: - type: Transform pos: 35.5,-9.5 parent: 12 - - uid: 16369 + - uid: 16373 components: - type: Transform - pos: 34.5,-30.5 + pos: -59.5,-16.5 parent: 12 - uid: 16451 components: @@ -155148,11 +157107,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,38.5 parent: 12 - - uid: 17841 - components: - - type: Transform - pos: -43.5,69.5 - parent: 12 - uid: 18159 components: - type: Transform @@ -155225,12 +157179,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 12 - - uid: 22102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,4.5 - parent: 12 - uid: 22406 components: - type: Transform @@ -155274,6 +157222,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-32.5 parent: 12 + - uid: 24666 + components: + - type: Transform + pos: -46.5,66.5 + parent: 12 + - uid: 24673 + components: + - type: Transform + pos: 59.5,12.5 + parent: 12 - uid: 25008 components: - type: Transform @@ -155291,6 +157249,11 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 12 + - uid: 25531 + components: + - type: Transform + pos: 62.5,10.5 + parent: 12 - uid: 25684 components: - type: Transform @@ -155390,18 +157353,6 @@ entities: - type: Transform pos: 42.5,56.5 parent: 12 - - uid: 25935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,61.5 - parent: 12 - - uid: 25936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,61.5 - parent: 12 - uid: 25962 components: - type: Transform @@ -155484,11 +157435,32 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,64.5 parent: 12 + - uid: 26889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,62.5 + parent: 12 + - uid: 27012 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 12 + - uid: 27235 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 12 - uid: 27397 components: - type: Transform pos: -43.5,-16.5 parent: 12 + - uid: 27708 + components: + - type: Transform + pos: -51.5,56.5 + parent: 12 - uid: 27853 components: - type: Transform @@ -155507,6 +157479,11 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-16.5 parent: 12 + - uid: 28640 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 12 - uid: 28759 components: - type: Transform @@ -155517,21 +157494,46 @@ entities: - type: Transform pos: 53.5,-2.5 parent: 12 - - uid: 29596 + - uid: 28871 components: - type: Transform - pos: -43.5,70.5 + pos: 42.5,-42.5 + parent: 12 + - uid: 28890 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 12 + - uid: 29607 + components: + - type: Transform + pos: -29.5,79.5 + parent: 12 + - uid: 29608 + components: + - type: Transform + pos: -28.5,79.5 + parent: 12 + - uid: 29783 + components: + - type: Transform + pos: -43.5,73.5 + parent: 12 + - uid: 29972 + components: + - type: Transform + pos: -52.5,49.5 + parent: 12 + - uid: 29987 + components: + - type: Transform + pos: -34.5,74.5 parent: 12 - uid: 30529 components: - type: Transform pos: -28.5,-56.5 parent: 12 - - uid: 30538 - components: - - type: Transform - pos: -17.5,-67.5 - parent: 12 - uid: 30708 components: - type: Transform @@ -155655,6 +157657,12 @@ entities: - type: Transform pos: -25.836569,50.923958 parent: 12 + - uid: 26793 + components: + - type: Transform + rot: -100.53096491487331 rad + pos: 38.712696,-30.803366 + parent: 12 - proto: Railing entities: - uid: 365 @@ -155677,11 +157685,17 @@ entities: - type: Transform pos: -10.5,-15.5 parent: 12 - - uid: 9257 + - uid: 6185 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-29.5 + pos: -52.5,73.5 + parent: 12 + - uid: 6188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,74.5 parent: 12 - uid: 10301 components: @@ -155725,6 +157739,12 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-14.5 parent: 12 + - uid: 22102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-43.5 + parent: 12 - uid: 22287 components: - type: Transform @@ -155858,22 +157878,32 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,68.5 parent: 12 - - uid: 27600 + - uid: 28140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-32.5 + rot: 3.141592653589793 rad + pos: -48.5,74.5 parent: 12 - - uid: 28069 + - uid: 28146 components: - type: Transform - pos: -56.5,-33.5 + rot: 3.141592653589793 rad + pos: -50.5,74.5 parent: 12 - - uid: 28145 + - uid: 28163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-30.5 + pos: -48.5,69.5 + parent: 12 + - uid: 28166 + components: + - type: Transform + pos: -51.5,69.5 + parent: 12 + - uid: 28191 + components: + - type: Transform + pos: -49.5,69.5 parent: 12 - uid: 28614 components: @@ -155924,35 +157954,40 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-2.5 parent: 12 - - uid: 29605 + - uid: 28872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,71.5 + rot: 3.141592653589793 rad + pos: 36.5,-43.5 parent: 12 - - uid: 29606 + - uid: 29010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,70.5 + rot: -1.5707963267948966 rad + pos: -52.5,70.5 parent: 12 - - uid: 29607 + - uid: 29044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,69.5 + rot: 3.141592653589793 rad + pos: -49.5,74.5 parent: 12 - - uid: 29608 + - uid: 29045 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,68.5 + pos: -47.5,73.5 parent: 12 - - uid: 29609 + - uid: 29052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,67.5 + pos: -47.5,70.5 + parent: 12 + - uid: 29058 + components: + - type: Transform + pos: -50.5,69.5 parent: 12 - uid: 30544 components: @@ -155960,23 +157995,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,23.5 parent: 12 - - uid: 31449 - components: - - type: Transform - pos: 4.5,-51.5 - parent: 12 - - uid: 31450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-56.5 - parent: 12 - - uid: 31473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-60.5 - parent: 12 - uid: 31487 components: - type: Transform @@ -156035,11 +158053,28 @@ entities: parent: 12 - proto: RailingCorner entities: - - uid: 9138 + - uid: 6211 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-33.5 + pos: -52.5,69.5 + parent: 12 + - uid: 9514 + components: + - type: Transform + pos: -47.5,69.5 + parent: 12 + - uid: 9534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,74.5 + parent: 12 + - uid: 9537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,74.5 parent: 12 - uid: 22603 components: @@ -156113,23 +158148,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,52.5 parent: 12 - - uid: 24493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,66.5 - parent: 12 - - uid: 24494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,67.5 - parent: 12 - - uid: 31380 - components: - - type: Transform - pos: 5.5,-61.5 - parent: 12 - uid: 31488 components: - type: Transform @@ -156171,14 +158189,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,24.5 parent: 12 -- proto: RailingRound - entities: - - uid: 25531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-32.5 - parent: 12 - proto: RandomArcade entities: - uid: 16926 @@ -156208,16 +158218,16 @@ entities: parent: 12 - proto: RandomArtifactSpawner entities: - - uid: 2009 - components: - - type: Transform - pos: -48.5,-31.5 - parent: 12 - uid: 9760 components: - type: Transform pos: -53.5,-23.5 parent: 12 + - uid: 20855 + components: + - type: Transform + pos: -51.5,-25.5 + parent: 12 - proto: RandomDrinkGlass entities: - uid: 15069 @@ -156235,6 +158245,11 @@ entities: - type: Transform pos: 21.5,51.5 parent: 12 + - uid: 20539 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 12 - uid: 25714 components: - type: Transform @@ -156250,10 +158265,10 @@ entities: - type: Transform pos: -55.5,-14.5 parent: 12 - - uid: 29353 + - uid: 29107 components: - type: Transform - pos: 29.5,-8.5 + pos: -45.5,71.5 parent: 12 - proto: RandomFoodMeal entities: @@ -156289,6 +158304,11 @@ entities: - type: Transform pos: 21.5,50.5 parent: 12 + - uid: 29020 + components: + - type: Transform + pos: -54.5,72.5 + parent: 12 - proto: RandomPainting entities: - uid: 6984 @@ -156400,6 +158420,11 @@ entities: parent: 12 - proto: RandomPosterContraband entities: + - uid: 1350 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 12 - uid: 5245 components: - type: Transform @@ -156425,6 +158450,11 @@ entities: - type: Transform pos: 41.5,-3.5 parent: 12 + - uid: 18582 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 12 - uid: 21401 components: - type: Transform @@ -156435,17 +158465,10 @@ entities: - type: Transform pos: -3.5,36.5 parent: 12 - - uid: 24321 + - uid: 22860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-33.5 - parent: 12 - - uid: 24322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-33.5 + pos: -17.5,69.5 parent: 12 - uid: 24323 components: @@ -156507,17 +158530,67 @@ entities: rot: 3.141592653589793 rad pos: 29.5,15.5 parent: 12 + - uid: 27310 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 12 - uid: 28036 components: - type: Transform pos: 37.5,-20.5 parent: 12 + - uid: 28998 + components: + - type: Transform + pos: -52.5,56.5 + parent: 12 + - uid: 29021 + components: + - type: Transform + pos: -44.5,66.5 + parent: 12 + - uid: 29108 + components: + - type: Transform + pos: -32.5,75.5 + parent: 12 - uid: 29354 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-6.5 parent: 12 + - uid: 29634 + components: + - type: Transform + pos: -40.5,73.5 + parent: 12 + - uid: 29637 + components: + - type: Transform + pos: -51.5,52.5 + parent: 12 + - uid: 29642 + components: + - type: Transform + pos: -40.5,65.5 + parent: 12 + - uid: 29988 + components: + - type: Transform + pos: -53.5,53.5 + parent: 12 + - uid: 30121 + components: + - type: Transform + pos: -30.5,79.5 + parent: 12 + - uid: 30127 + components: + - type: Transform + pos: -26.5,73.5 + parent: 12 - uid: 31717 components: - type: Transform @@ -156553,16 +158626,6 @@ entities: - type: Transform pos: -51.5,-48.5 parent: 12 - - uid: 31724 - components: - - type: Transform - pos: -54.5,-36.5 - parent: 12 - - uid: 31725 - components: - - type: Transform - pos: -60.5,-27.5 - parent: 12 - uid: 31726 components: - type: Transform @@ -156940,10 +159003,10 @@ entities: parent: 12 - proto: RandomSpawner entities: - - uid: 97 + - uid: 757 components: - type: Transform - pos: 4.5,-23.5 + pos: 57.5,-40.5 parent: 12 - uid: 5858 components: @@ -156975,6 +159038,11 @@ entities: - type: Transform pos: -1.5,15.5 parent: 12 + - uid: 9622 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 12 - uid: 12045 components: - type: Transform @@ -157006,16 +159074,6 @@ entities: - type: Transform pos: -44.5,58.5 parent: 12 - - uid: 23721 - components: - - type: Transform - pos: -56.5,62.5 - parent: 12 - - uid: 23722 - components: - - type: Transform - pos: -52.5,60.5 - parent: 12 - uid: 24221 components: - type: Transform @@ -157326,11 +159384,6 @@ entities: - type: Transform pos: 50.5,-43.5 parent: 12 - - uid: 24413 - components: - - type: Transform - pos: 55.5,-40.5 - parent: 12 - uid: 24414 components: - type: Transform @@ -157411,11 +159464,6 @@ entities: - type: Transform pos: 16.5,-22.5 parent: 12 - - uid: 24434 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 12 - uid: 24435 components: - type: Transform @@ -157526,11 +159574,6 @@ entities: - type: Transform pos: 6.5,-48.5 parent: 12 - - uid: 24471 - components: - - type: Transform - pos: 7.5,-52.5 - parent: 12 - uid: 24473 components: - type: Transform @@ -157581,6 +159624,51 @@ entities: - type: Transform pos: -38.5,30.5 parent: 12 + - uid: 28905 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 12 + - uid: 28920 + components: + - type: Transform + pos: 12.5,-56.5 + parent: 12 + - uid: 28925 + components: + - type: Transform + pos: 35.5,-50.5 + parent: 12 + - uid: 28926 + components: + - type: Transform + pos: 30.5,-48.5 + parent: 12 + - uid: 28934 + components: + - type: Transform + pos: 36.5,-43.5 + parent: 12 + - uid: 28944 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 12 + - uid: 28947 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 12 + - uid: 28970 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 12 + - uid: 28971 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 12 - uid: 31146 components: - type: Transform @@ -157873,7 +159961,8 @@ entities: - uid: 26775 components: - type: Transform - pos: 29.510424,-21.430777 + rot: -43.98229715025713 rad + pos: 33.26136,-18.774406 parent: 12 - proto: ReagentContainerFlour entities: @@ -158050,23 +160139,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-6.5 parent: 12 - - uid: 7228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 12 - uid: 7269 components: - type: Transform pos: 13.5,19.5 parent: 12 - - uid: 7310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 12 - uid: 11365 components: - type: Transform @@ -158116,24 +160193,6 @@ entities: - type: Transform pos: 11.5,0.5 parent: 12 - - uid: 29002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-0.5 - parent: 12 - - uid: 29003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 12 - - uid: 29149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-0.5 - parent: 12 - proto: ReinforcedWindow entities: - uid: 2 @@ -158151,6 +160210,11 @@ entities: - type: Transform pos: -1.5,1.5 parent: 12 + - uid: 68 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 - uid: 69 components: - type: Transform @@ -158190,6 +160254,11 @@ entities: - type: Transform pos: -6.5,-7.5 parent: 12 + - uid: 273 + components: + - type: Transform + pos: 14.5,11.5 + parent: 12 - uid: 275 components: - type: Transform @@ -158280,12 +160349,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-16.5 parent: 12 - - uid: 369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-44.5 - parent: 12 - uid: 455 components: - type: Transform @@ -158310,12 +160373,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,0.5 parent: 12 - - uid: 510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,56.5 - parent: 12 - uid: 519 components: - type: Transform @@ -158366,21 +160423,6 @@ entities: - type: Transform pos: -34.5,-20.5 parent: 12 - - uid: 617 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 12 - - uid: 618 - components: - - type: Transform - pos: -38.5,-18.5 - parent: 12 - - uid: 619 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 12 - uid: 623 components: - type: Transform @@ -158558,12 +160600,6 @@ entities: - type: Transform pos: -29.5,-3.5 parent: 12 - - uid: 929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 12 - uid: 953 components: - type: Transform @@ -158690,18 +160726,6 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,6.5 parent: 12 - - uid: 1172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-54.5 - parent: 12 - - uid: 1284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-42.5 - parent: 12 - uid: 1962 components: - type: Transform @@ -158906,26 +160930,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 12 - - uid: 4110 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 12 - - uid: 4111 - components: - - type: Transform - pos: 9.5,-53.5 - parent: 12 - - uid: 4112 - components: - - type: Transform - pos: 9.5,-52.5 - parent: 12 - - uid: 4113 - components: - - type: Transform - pos: 9.5,-51.5 - parent: 12 - uid: 4151 components: - type: Transform @@ -158989,12 +160993,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-24.5 parent: 12 - - uid: 4434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 12 - uid: 4449 components: - type: Transform @@ -159013,31 +161011,16 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-22.5 parent: 12 - - uid: 4459 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 12 - uid: 4468 components: - type: Transform pos: 8.5,-17.5 parent: 12 - - uid: 4470 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 12 - uid: 4471 components: - type: Transform pos: 13.5,-18.5 parent: 12 - - uid: 4477 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 12 - uid: 4581 components: - type: Transform @@ -159260,6 +161243,11 @@ entities: - type: Transform pos: 13.5,-0.5 parent: 12 + - uid: 5874 + components: + - type: Transform + pos: 49.5,59.5 + parent: 12 - uid: 5880 components: - type: Transform @@ -159271,6 +161259,11 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 12 + - uid: 5983 + components: + - type: Transform + pos: 49.5,58.5 + parent: 12 - uid: 5992 components: - type: Transform @@ -159450,11 +161443,6 @@ entities: - type: Transform pos: 26.5,-39.5 parent: 12 - - uid: 6210 - components: - - type: Transform - pos: 13.5,-54.5 - parent: 12 - uid: 6213 components: - type: Transform @@ -159585,97 +161573,6 @@ entities: - type: Transform pos: 29.5,-52.5 parent: 12 - - uid: 6247 - components: - - type: Transform - pos: 30.5,-54.5 - parent: 12 - - uid: 6249 - components: - - type: Transform - pos: 32.5,-54.5 - parent: 12 - - uid: 6250 - components: - - type: Transform - pos: 32.5,-53.5 - parent: 12 - - uid: 6251 - components: - - type: Transform - pos: 32.5,-52.5 - parent: 12 - - uid: 6252 - components: - - type: Transform - pos: 32.5,-51.5 - parent: 12 - - uid: 6253 - components: - - type: Transform - pos: 32.5,-50.5 - parent: 12 - - uid: 6254 - components: - - type: Transform - pos: 32.5,-49.5 - parent: 12 - - uid: 6255 - components: - - type: Transform - pos: 32.5,-48.5 - parent: 12 - - uid: 6256 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 12 - - uid: 6257 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 12 - - uid: 6258 - components: - - type: Transform - pos: 32.5,-45.5 - parent: 12 - - uid: 6288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-44.5 - parent: 12 - - uid: 6289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-44.5 - parent: 12 - - uid: 6290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-43.5 - parent: 12 - - uid: 6305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-40.5 - parent: 12 - - uid: 6306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 12 - - uid: 6307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 - parent: 12 - uid: 6343 components: - type: Transform @@ -159706,24 +161603,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-45.5 parent: 12 - - uid: 6348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-45.5 - parent: 12 - - uid: 6349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-44.5 - parent: 12 - - uid: 6743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-52.5 - parent: 12 - uid: 6803 components: - type: Transform @@ -159790,18 +161669,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-30.5 parent: 12 - - uid: 7483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-45.5 - parent: 12 - - uid: 7484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-44.5 - parent: 12 - uid: 7498 components: - type: Transform @@ -160019,23 +161886,11 @@ entities: - type: Transform pos: 62.5,-28.5 parent: 12 - - uid: 8070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-53.5 - parent: 12 - uid: 8239 components: - type: Transform pos: 35.5,-21.5 parent: 12 - - uid: 8248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-51.5 - parent: 12 - uid: 8295 components: - type: Transform @@ -160072,12 +161927,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-9.5 parent: 12 - - uid: 8457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-21.5 - parent: 12 - uid: 8480 components: - type: Transform @@ -160118,22 +161967,27 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,4.5 parent: 12 + - uid: 9134 + components: + - type: Transform + pos: -53.5,76.5 + parent: 12 - uid: 9172 components: - type: Transform pos: 0.5,3.5 parent: 12 - - uid: 9227 - components: - - type: Transform - pos: 42.5,-40.5 - parent: 12 - uid: 9256 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-49.5 parent: 12 + - uid: 9257 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 12 - uid: 9263 components: - type: Transform @@ -160175,6 +162029,16 @@ entities: rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 12 + - uid: 9545 + components: + - type: Transform + pos: -50.5,77.5 + parent: 12 + - uid: 9546 + components: + - type: Transform + pos: -46.5,76.5 + parent: 12 - uid: 9571 components: - type: Transform @@ -160203,11 +162067,10 @@ entities: - type: Transform pos: 17.5,15.5 parent: 12 - - uid: 9756 + - uid: 9773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-13.5 + pos: 29.5,-29.5 parent: 12 - uid: 9868 components: @@ -160639,27 +162502,30 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-44.5 parent: 12 + - uid: 10313 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 10324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-13.5 + pos: -60.5,-35.5 parent: 12 - uid: 10325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-22.5 + pos: -59.5,-36.5 parent: 12 - uid: 10340 components: - type: Transform - pos: 14.5,-54.5 + pos: -32.5,-15.5 parent: 12 - - uid: 10342 + - uid: 10341 components: - type: Transform - pos: 29.5,-54.5 + pos: -58.5,-37.5 parent: 12 - uid: 10572 components: @@ -160679,6 +162545,11 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,10.5 parent: 12 + - uid: 10631 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 12 - uid: 10682 components: - type: Transform @@ -160772,11 +162643,22 @@ entities: - type: Transform pos: -32.5,-45.5 parent: 12 + - uid: 10996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-31.5 + parent: 12 - uid: 10999 components: - type: Transform pos: 0.5,1.5 parent: 12 + - uid: 11019 + components: + - type: Transform + pos: 49.5,57.5 + parent: 12 - uid: 11029 components: - type: Transform @@ -160902,12 +162784,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,26.5 parent: 12 - - uid: 11259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 12 - uid: 11290 components: - type: Transform @@ -160998,6 +162874,11 @@ entities: - type: Transform pos: 55.5,24.5 parent: 12 + - uid: 11591 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 12 - uid: 11624 components: - type: Transform @@ -161179,11 +163060,6 @@ entities: - type: Transform pos: 25.5,30.5 parent: 12 - - uid: 11769 - components: - - type: Transform - pos: 25.5,29.5 - parent: 12 - uid: 11770 components: - type: Transform @@ -161249,6 +163125,11 @@ entities: - type: Transform pos: 59.5,38.5 parent: 12 + - uid: 11941 + components: + - type: Transform + pos: -54.5,67.5 + parent: 12 - uid: 11946 components: - type: Transform @@ -161640,11 +163521,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,65.5 parent: 12 - - uid: 14231 - components: - - type: Transform - pos: 36.5,-44.5 - parent: 12 - uid: 14242 components: - type: Transform @@ -162453,6 +164329,26 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,47.5 parent: 12 + - uid: 17842 + components: + - type: Transform + pos: -55.5,72.5 + parent: 12 + - uid: 17858 + components: + - type: Transform + pos: -55.5,71.5 + parent: 12 + - uid: 17917 + components: + - type: Transform + pos: -53.5,67.5 + parent: 12 + - uid: 18642 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 12 - uid: 18650 components: - type: Transform @@ -162614,18 +164510,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,60.5 parent: 12 - - uid: 19270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 12 - - uid: 19278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,56.5 - parent: 12 - uid: 19281 components: - type: Transform @@ -162673,24 +164557,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-49.5 parent: 12 - - uid: 19635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,79.5 - parent: 12 - - uid: 19645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,77.5 - parent: 12 - - uid: 19649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,79.5 - parent: 12 - uid: 19650 components: - type: Transform @@ -162765,11 +164631,6 @@ entities: - type: Transform pos: -50.5,47.5 parent: 12 - - uid: 20543 - components: - - type: Transform - pos: 41.5,3.5 - parent: 12 - uid: 20778 components: - type: Transform @@ -162780,6 +164641,21 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 + - uid: 21332 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 12 + - uid: 21513 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 12 + - uid: 21674 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 12 - uid: 21868 components: - type: Transform @@ -162870,11 +164746,15 @@ entities: - type: Transform pos: 43.5,15.5 parent: 12 + - uid: 22324 + components: + - type: Transform + pos: -38.5,80.5 + parent: 12 - uid: 22326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,58.5 + pos: -36.5,80.5 parent: 12 - uid: 22400 components: @@ -162920,18 +164800,6 @@ entities: - type: Transform pos: 57.5,-7.5 parent: 12 - - uid: 23710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,61.5 - parent: 12 - - uid: 23896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,61.5 - parent: 12 - uid: 24192 components: - type: Transform @@ -162987,27 +164855,27 @@ entities: - type: Transform pos: -1.5,-29.5 parent: 12 - - uid: 24565 + - uid: 24340 components: - type: Transform - pos: 3.5,-21.5 + pos: -54.5,75.5 parent: 12 - uid: 24655 components: - type: Transform pos: 22.5,8.5 parent: 12 - - uid: 25585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-26.5 - parent: 12 - uid: 25871 components: - type: Transform pos: 0.5,-29.5 parent: 12 + - uid: 25888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-44.5 + parent: 12 - uid: 26257 components: - type: Transform @@ -163050,35 +164918,10 @@ entities: rot: 1.5707963267948966 rad pos: 59.5,-47.5 parent: 12 - - uid: 26392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-50.5 - parent: 12 - - uid: 26393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-50.5 - parent: 12 - - uid: 26394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-50.5 - parent: 12 - uid: 26395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-50.5 - parent: 12 - - uid: 26396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-50.5 + pos: -2.5,73.5 parent: 12 - uid: 26397 components: @@ -163109,34 +164952,59 @@ entities: - type: Transform pos: 33.5,-3.5 parent: 12 - - uid: 26619 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 12 - uid: 26641 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 + - uid: 26690 + components: + - type: Transform + pos: 41.5,3.5 + parent: 12 - uid: 26809 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,11.5 parent: 12 + - uid: 26833 + components: + - type: Transform + pos: -60.5,-36.5 + parent: 12 + - uid: 26900 + components: + - type: Transform + pos: -59.5,-37.5 + parent: 12 + - uid: 26921 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 12 + - uid: 26958 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 12 + - uid: 26982 + components: + - type: Transform + pos: -57.5,-11.5 + parent: 12 + - uid: 27009 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 12 - uid: 27039 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,67.5 parent: 12 - - uid: 27243 - components: - - type: Transform - pos: 41.5,2.5 - parent: 12 - uid: 27289 components: - type: Transform @@ -163158,60 +165026,30 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-11.5 parent: 12 - - uid: 27398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-13.5 - parent: 12 - uid: 27399 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-11.5 parent: 12 - - uid: 27401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-13.5 - parent: 12 - uid: 27402 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-11.5 parent: 12 - - uid: 27404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-13.5 - parent: 12 - uid: 27405 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-11.5 parent: 12 - - uid: 27407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 - parent: 12 - uid: 27409 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-11.5 parent: 12 - - uid: 27410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 12 - uid: 27597 components: - type: Transform @@ -163224,17 +165062,10 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-27.5 parent: 12 - - uid: 27601 + - uid: 27713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-23.5 - parent: 12 - - uid: 27603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-25.5 + pos: -26.5,74.5 parent: 12 - uid: 27854 components: @@ -163296,6 +165127,11 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-11.5 parent: 12 + - uid: 28195 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 12 - uid: 28269 components: - type: Transform @@ -163311,22 +165147,63 @@ entities: - type: Transform pos: -49.5,-18.5 parent: 12 - - uid: 28438 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 12 - - uid: 28439 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 12 - uid: 28559 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 12 + - uid: 28638 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 12 + - uid: 28981 + components: + - type: Transform + pos: -49.5,77.5 + parent: 12 + - uid: 28983 + components: + - type: Transform + pos: -45.5,76.5 + parent: 12 + - uid: 28984 + components: + - type: Transform + pos: -45.5,75.5 + parent: 12 + - uid: 29004 + components: + - type: Transform + pos: -57.5,60.5 + parent: 12 + - uid: 29013 + components: + - type: Transform + pos: -54.5,76.5 + parent: 12 + - uid: 29030 + components: + - type: Transform + pos: -57.5,61.5 + parent: 12 + - uid: 29068 + components: + - type: Transform + pos: -54.5,68.5 + parent: 12 + - uid: 29137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,74.5 + parent: 12 + - uid: 29153 + components: + - type: Transform + pos: -40.5,78.5 + parent: 12 - uid: 29219 components: - type: Transform @@ -163361,119 +165238,41 @@ entities: rot: 3.141592653589793 rad pos: -22.5,66.5 parent: 12 - - uid: 29303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,73.5 - parent: 12 - - uid: 29319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,73.5 - parent: 12 - - uid: 29320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,73.5 - parent: 12 - - uid: 29321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,73.5 - parent: 12 - - uid: 29436 + - uid: 29313 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,67.5 + pos: -42.5,74.5 parent: 12 - - uid: 29437 + - uid: 29510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,68.5 + pos: -34.5,78.5 parent: 12 - - uid: 29438 + - uid: 29610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,69.5 + pos: -25.5,77.5 parent: 12 - - uid: 29439 + - uid: 29614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,70.5 + pos: -25.5,78.5 parent: 12 - - uid: 29440 + - uid: 29615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,71.5 + pos: -27.5,80.5 parent: 12 - - uid: 29441 + - uid: 29616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,71.5 + pos: -28.5,80.5 parent: 12 - - uid: 29442 + - uid: 29617 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,72.5 - parent: 12 - - uid: 29443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,72.5 - parent: 12 - - uid: 29444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,73.5 - parent: 12 - - uid: 29445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,73.5 - parent: 12 - - uid: 29446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,73.5 - parent: 12 - - uid: 29447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,73.5 - parent: 12 - - uid: 29448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,73.5 - parent: 12 - - uid: 29449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,73.5 - parent: 12 - - uid: 29450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,73.5 + pos: -29.5,80.5 parent: 12 - uid: 29722 components: @@ -163514,11 +165313,6 @@ entities: - type: Transform pos: -21.5,-10.5 parent: 12 - - uid: 30272 - components: - - type: Transform - pos: -12.5,77.5 - parent: 12 - uid: 30274 components: - type: Transform @@ -163541,18 +165335,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,75.5 parent: 12 - - uid: 30305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,74.5 - parent: 12 - - uid: 30306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,73.5 - parent: 12 - uid: 30307 components: - type: Transform @@ -163656,16 +165438,6 @@ entities: - type: Transform pos: -31.5,-60.5 parent: 12 - - uid: 30968 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 12 - - uid: 30969 - components: - - type: Transform - pos: 5.5,-55.5 - parent: 12 - uid: 30970 components: - type: Transform @@ -163723,18 +165495,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-64.5 parent: 12 - - uid: 31169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-64.5 - parent: 12 - - uid: 31170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-64.5 - parent: 12 - uid: 31176 components: - type: Transform @@ -163780,11 +165540,6 @@ entities: - type: Transform pos: -2.5,-70.5 parent: 12 - - uid: 31383 - components: - - type: Transform - pos: 5.5,-57.5 - parent: 12 - uid: 31457 components: - type: Transform @@ -163824,38 +165579,6 @@ entities: - type: Transform pos: -63.5,-23.5 parent: 12 - - uid: 31686 - components: - - type: Transform - pos: -62.5,-18.5 - parent: 12 - - uid: 31687 - components: - - type: Transform - pos: -62.5,-17.5 - parent: 12 - - uid: 31688 - components: - - type: Transform - pos: -61.5,-17.5 - parent: 12 - - uid: 31689 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 12 - - uid: 31690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-31.5 - parent: 12 - - uid: 31691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-31.5 - parent: 12 - uid: 31692 components: - type: Transform @@ -163901,17 +165624,6 @@ entities: - type: Transform pos: -12.5,79.5 parent: 12 - - uid: 21513 - components: - - type: Transform - pos: -13.5,77.5 - parent: 12 - - uid: 30301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,77.5 - parent: 12 - uid: 30302 components: - type: Transform @@ -164088,14 +165800,19 @@ entities: - uid: 9964 components: - type: Transform - rot: -43.98229715025713 rad - pos: -4.5002747,-32.689064 + rot: -12.566370614359172 rad + pos: -4.4072175,-32.679348 parent: 12 - uid: 26050 components: - type: Transform pos: -42.5,-45.5 parent: 12 + - uid: 26810 + components: + - type: Transform + pos: -23.417446,52.500484 + parent: 12 - proto: SawElectric entities: - uid: 11312 @@ -164160,6 +165877,11 @@ entities: parent: 12 - proto: ScalpelShiv entities: + - uid: 3079 + components: + - type: Transform + pos: -22.51911,53.492798 + parent: 12 - uid: 11945 components: - type: Transform @@ -164398,11 +166120,6 @@ entities: parent: 12 - proto: Screwdriver entities: - - uid: 9237 - components: - - type: Transform - pos: 43.53388,-37.312786 - parent: 12 - uid: 13323 components: - type: Transform @@ -164432,11 +166149,6 @@ entities: - type: Transform pos: 71.5,50.5 parent: 12 - - uid: 31471 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 12 - proto: ShardGlass entities: - uid: 3520 @@ -164444,6 +166156,11 @@ entities: - type: Transform pos: -0.5,20.5 parent: 12 + - uid: 4763 + components: + - type: Transform + pos: -22.533438,55.35212 + parent: 12 - uid: 7009 components: - type: Transform @@ -164506,10 +166223,10 @@ entities: parent: 12 - proto: SheetPlasma entities: - - uid: 26077 + - uid: 2420 components: - type: Transform - pos: 39.5,4.5 + pos: 40.47119,2.4496126 parent: 12 - proto: SheetPlasma1 entities: @@ -164522,6 +166239,11 @@ entities: count: 5 - proto: SheetPlasma10 entities: + - uid: 24434 + components: + - type: Transform + pos: 62.5,10.5 + parent: 12 - uid: 28215 components: - type: Transform @@ -164650,6 +166372,12 @@ entities: rot: -18.84955592153876 rad pos: 29.572147,2.9947028 parent: 12 + - uid: 25384 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 59.433964,12.527496 + parent: 12 - uid: 26547 components: - type: Transform @@ -164695,11 +166423,6 @@ entities: parent: 12 - proto: Shiv entities: - - uid: 25201 - components: - - type: Transform - pos: 36.293972,-30.4844 - parent: 12 - uid: 30493 components: - type: Transform @@ -164717,13 +166440,7 @@ entities: - uid: 504 components: - type: Transform - rot: -18.84955592153876 rad - pos: 5.6112194,-61.82998 - parent: 12 - - uid: 4168 - components: - - type: Transform - pos: 59.56368,-40.504784 + pos: 5.886181,-62.15094 parent: 12 - uid: 12121 components: @@ -164833,10 +166550,10 @@ entities: parent: 12 - proto: ShuttersNormalOpen entities: - - uid: 7529 + - uid: 2721 components: - type: Transform - pos: 51.5,-4.5 + pos: 13.5,-13.5 parent: 12 - uid: 8470 components: @@ -164848,6 +166565,16 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 12 + - uid: 9613 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 12 + - uid: 9645 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 12 - uid: 10382 components: - type: Transform @@ -164913,6 +166640,11 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,8.5 parent: 12 + - uid: 16869 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 12 - uid: 18665 components: - type: Transform @@ -165013,6 +166745,21 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,25.5 parent: 12 + - uid: 19823 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 + - uid: 19852 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 12 + - uid: 19861 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 12 - uid: 21916 components: - type: Transform @@ -165075,6 +166822,11 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-23.5 parent: 12 + - uid: 27184 + components: + - type: Transform + pos: -54.5,58.5 + parent: 12 - proto: ShuttersWindowOpen entities: - uid: 18849 @@ -165489,6 +167241,36 @@ entities: - Pressed: Toggle 18857: - Pressed: Toggle + - uid: 22059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 16869: + - Pressed: Toggle + 19861: + - Pressed: Toggle + 9645: + - Pressed: Toggle + 19852: + - Pressed: Toggle + - uid: 22062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 19823: + - Pressed: Toggle + 2721: + - Pressed: Toggle + 9613: + - Pressed: Toggle - uid: 23446 components: - type: Transform @@ -165588,6 +167370,16 @@ entities: - Pressed: Open 2548: - Pressed: Open + - uid: 29314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,58.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 27184: + - Pressed: Toggle - uid: 29834 components: - type: Transform @@ -166022,6 +167814,12 @@ entities: parent: 12 - proto: SignDirectionalSolar entities: + - uid: 28224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-61.5 + parent: 12 - uid: 31019 components: - type: Transform @@ -166055,12 +167853,6 @@ entities: parent: 12 - proto: SignElectricalMed entities: - - uid: 2261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,75.5 - parent: 12 - uid: 7522 components: - type: Transform @@ -166087,29 +167879,11 @@ entities: - type: Transform pos: -55.5,13.5 parent: 12 - - uid: 20523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,68.5 - parent: 12 - uid: 22153 components: - type: Transform pos: 63.5,1.5 parent: 12 - - uid: 25392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,55.5 - parent: 12 - - uid: 25490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,75.5 - parent: 12 - uid: 27155 components: - type: Transform @@ -166151,16 +167925,10 @@ entities: parent: 12 - proto: SignEscapePods entities: - - uid: 6282 + - uid: 29003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-42.5 - parent: 12 - - uid: 31266 - components: - - type: Transform - pos: -17.5,-66.5 + pos: -17.5,-65.5 parent: 12 - proto: SignEVA entities: @@ -166552,6 +168320,11 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-20.5 parent: 12 + - uid: 30002 + components: + - type: Transform + pos: -37.5,73.5 + parent: 12 - proto: SignSmoking entities: - uid: 2047 @@ -166639,6 +168412,12 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,50.5 parent: 12 + - uid: 26738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-32.5 + parent: 12 - uid: 32027 components: - type: Transform @@ -166659,19 +168438,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-29.5 parent: 12 - - uid: 8428 - components: - - type: Transform - pos: 37.5,-30.5 - parent: 12 - proto: SinkWide entities: - - uid: 288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-60.5 - parent: 12 - uid: 936 components: - type: Transform @@ -166766,32 +168534,6 @@ entities: - type: Transform pos: 54.49004,14.54105 parent: 12 -- proto: SmallLight - entities: - - uid: 13210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,57.5 - parent: 12 - - uid: 24254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,61.5 - parent: 12 - - uid: 25412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,65.5 - parent: 12 - - uid: 27184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,72.5 - parent: 12 - proto: SmartFridge entities: - uid: 8300 @@ -166851,6 +168593,26 @@ entities: - type: Transform pos: 38.5,-6.5 parent: 12 + - uid: 26871 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 12 + - uid: 26872 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 12 + - uid: 26873 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 12 + - uid: 27222 + components: + - type: Transform + pos: -19.5,-66.5 + parent: 12 - uid: 32042 components: - type: Transform @@ -166865,6 +168627,12 @@ entities: parent: 12 - proto: SmokingPipe entities: + - uid: 5235 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: -39.62392,-16.257439 + parent: 12 - uid: 17417 components: - type: Transform @@ -166903,12 +168671,6 @@ entities: parent: 12 - proto: SodaDispenser entities: - - uid: 8983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-14.5 - parent: 12 - uid: 15086 components: - type: Transform @@ -166920,6 +168682,18 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 12 + - uid: 16339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-32.5 + parent: 12 + - uid: 27007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-15.5 + parent: 12 - proto: SodaDispenserEmpty entities: - uid: 23451 @@ -166944,6 +168718,12 @@ entities: parent: 12 - proto: SolarPanel entities: + - uid: 948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-66.5 + parent: 12 - uid: 6353 components: - type: Transform @@ -167556,12 +169336,24 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-59.5 parent: 12 + - uid: 10816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-68.5 + parent: 12 - uid: 10823 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-58.5 parent: 12 + - uid: 10953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-68.5 + parent: 12 - uid: 13967 components: - type: Transform @@ -168142,6 +169934,192 @@ entities: - type: Transform pos: -67.5,54.5 parent: 12 + - uid: 18629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-66.5 + parent: 12 + - uid: 24456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-68.5 + parent: 12 + - uid: 24642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-62.5 + parent: 12 + - uid: 27495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-64.5 + parent: 12 + - uid: 27496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-68.5 + parent: 12 + - uid: 27497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-64.5 + parent: 12 + - uid: 27500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-64.5 + parent: 12 + - uid: 27503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-66.5 + parent: 12 + - uid: 27705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-64.5 + parent: 12 + - uid: 27710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-68.5 + parent: 12 + - uid: 27717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-66.5 + parent: 12 + - uid: 27719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-68.5 + parent: 12 + - uid: 27722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-66.5 + parent: 12 + - uid: 27723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-64.5 + parent: 12 + - uid: 27725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-64.5 + parent: 12 + - uid: 27726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-64.5 + parent: 12 + - uid: 27811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-64.5 + parent: 12 + - uid: 27812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-66.5 + parent: 12 + - uid: 27813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-62.5 + parent: 12 + - uid: 27814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-62.5 + parent: 12 + - uid: 27815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-62.5 + parent: 12 + - uid: 27821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-62.5 + parent: 12 + - uid: 27822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-62.5 + parent: 12 + - uid: 27823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-66.5 + parent: 12 + - uid: 27826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-62.5 + parent: 12 + - uid: 27837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-62.5 + parent: 12 + - uid: 27839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-62.5 + parent: 12 + - uid: 28245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-66.5 + parent: 12 + - uid: 28246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-66.5 + parent: 12 + - uid: 28306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-68.5 + parent: 12 + - uid: 29001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-62.5 + parent: 12 - uid: 31009 components: - type: Transform @@ -168201,6 +170179,36 @@ entities: parent: 12 - proto: SolarPanelBroken entities: + - uid: 2401 + components: + - type: Transform + pos: -38.5,-66.5 + parent: 12 + - uid: 24256 + components: + - type: Transform + pos: -40.5,-64.5 + parent: 12 + - uid: 27704 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 12 + - uid: 27825 + components: + - type: Transform + pos: -36.5,-68.5 + parent: 12 + - uid: 28247 + components: + - type: Transform + pos: -29.5,-68.5 + parent: 12 + - uid: 28248 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 12 - uid: 30875 components: - type: Transform @@ -168289,6 +170297,11 @@ entities: - type: Transform pos: -71.5,48.5 parent: 12 + - uid: 28242 + components: + - type: Transform + pos: -25.5,-69.5 + parent: 12 - uid: 31017 components: - type: Transform @@ -168296,6 +170309,11 @@ entities: parent: 12 - proto: SolidSecretDoor entities: + - uid: 3147 + components: + - type: Transform + pos: -53.5,55.5 + parent: 12 - uid: 28266 components: - type: Transform @@ -169267,16 +171285,6 @@ entities: parent: 12 - proto: SpawnPointStationEngineer entities: - - uid: 3469 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 12 - - uid: 4629 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - uid: 5501 components: - type: Transform @@ -169297,10 +171305,10 @@ entities: - type: Transform pos: 31.5,-19.5 parent: 12 - - uid: 9174 + - uid: 19270 components: - type: Transform - pos: 12.5,-15.5 + pos: 13.5,-23.5 parent: 12 - proto: SpawnPointTechnicalAssistant entities: @@ -169356,8 +171364,7 @@ entities: - uid: 32143 components: - type: Transform - rot: -131.94689145077115 rad - pos: -62.016247,-54.02513 + pos: -62.424545,-53.537132 parent: 12 - proto: Spoon entities: @@ -169640,18 +171647,6 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-0.5 parent: 12 - - uid: 29347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,1.5 - parent: 12 - - uid: 29348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,1.5 - parent: 12 - proto: Stairs entities: - uid: 1785 @@ -169959,6 +171954,11 @@ entities: - type: Transform pos: 44.5,2.5 parent: 12 + - uid: 19783 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 12 - uid: 26078 components: - type: Transform @@ -170014,18 +172014,6 @@ entities: - type: Transform pos: -3.517066,-12.428263 parent: 12 - - uid: 8896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.383762,-40.24519 - parent: 12 - - uid: 8897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.555637,-36.37019 - parent: 12 - uid: 9097 components: - type: Transform @@ -170358,6 +172346,36 @@ entities: rot: 3.141592653589793 rad pos: 8.585284,67.665504 parent: 12 + - uid: 25391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,76.5 + parent: 12 + - uid: 25392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,77.5 + parent: 12 + - uid: 25393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,77.5 + parent: 12 + - uid: 25399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,76.5 + parent: 12 + - uid: 25403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,76.5 + parent: 12 - uid: 26069 components: - type: Transform @@ -170381,6 +172399,23 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,35.5 parent: 12 + - uid: 29014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,76.5 + parent: 12 + - uid: 29034 + components: + - type: Transform + pos: -54.5,62.5 + parent: 12 + - uid: 29319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,76.5 + parent: 12 - uid: 31117 components: - type: Transform @@ -170401,6 +172436,12 @@ entities: parent: 12 - proto: StoolBar entities: + - uid: 6190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-15.5 + parent: 12 - uid: 14997 components: - type: Transform @@ -170461,6 +172502,17 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,48.5 parent: 12 + - uid: 24196 + components: + - type: Transform + pos: -54.5,73.5 + parent: 12 + - uid: 26503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 12 - uid: 28188 components: - type: Transform @@ -170473,48 +172525,65 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-13.5 parent: 12 + - uid: 29007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,71.5 + parent: 12 + - uid: 29503 + components: + - type: Transform + pos: -45.5,72.5 + parent: 12 + - uid: 29504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,70.5 + parent: 12 - proto: StorageCanister entities: + - uid: 240 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 12 + - uid: 271 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 12 - uid: 397 components: - type: Transform pos: 24.5,-0.5 parent: 12 - - uid: 690 - components: - - type: Transform - pos: -50.5,-29.5 - parent: 12 - - uid: 706 - components: - - type: Transform - pos: -49.5,-29.5 - parent: 12 - uid: 4854 components: - type: Transform pos: 24.5,1.5 parent: 12 - - uid: 20776 + - uid: 17303 components: - type: Transform - pos: 10.5,-11.5 - parent: 12 - - uid: 20782 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 12 - - uid: 20876 - components: - - type: Transform - pos: 12.5,-11.5 + pos: -52.5,-32.5 parent: 12 - uid: 26601 components: - type: Transform pos: 3.5,-18.5 parent: 12 + - uid: 26874 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 12 + - uid: 27218 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 12 - uid: 31052 components: - type: Transform @@ -170555,11 +172624,6 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 12 - - uid: 3143 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 - uid: 3225 components: - type: Transform @@ -170660,6 +172724,11 @@ entities: - type: Transform pos: -47.5,-43.5 parent: 12 + - uid: 29430 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 12 - uid: 30495 components: - type: Transform @@ -170679,11 +172748,21 @@ entities: parent: 12 - proto: SuitStorageEngi entities: + - uid: 214 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 12 - uid: 2287 components: - type: Transform pos: 62.5,-3.5 parent: 12 + - uid: 4525 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 12 - uid: 4553 components: - type: Transform @@ -170699,11 +172778,21 @@ entities: - type: Transform pos: 29.5,-13.5 parent: 12 + - uid: 4708 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 12 - uid: 9173 components: - type: Transform pos: 60.5,-3.5 parent: 12 + - uid: 26851 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 12 - proto: SuitStorageEVA entities: - uid: 22129 @@ -170736,13 +172825,6 @@ entities: - type: Transform pos: -9.5,4.5 parent: 12 -- proto: SuitStorageEVAEmergency - entities: - - uid: 30536 - components: - - type: Transform - pos: -17.5,-68.5 - parent: 12 - proto: SuitStorageEVAPrisoner entities: - uid: 19835 @@ -170838,17 +172920,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: HOP front desk - - uid: 3974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-22.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: RD's room - uid: 4765 components: - type: Transform @@ -170880,6 +172951,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: Bridge east + - uid: 6301 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Tech vault - uid: 9660 components: - type: Transform @@ -171031,27 +173112,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI exterior - - uid: 28804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-19.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Server room - - uid: 28865 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI upload 2 - uid: 31748 components: - type: Transform @@ -171090,16 +173150,6 @@ entities: id: AI core power room - proto: SurveillanceCameraEngineering entities: - - uid: 4167 - components: - - type: Transform - pos: 36.5,-39.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Secure techvault - uid: 4667 components: - type: Transform @@ -171122,17 +173172,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: TEG West - - uid: 8416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-37.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Southeast tech vault - uid: 9821 components: - type: Transform @@ -171478,16 +173517,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway north A - - uid: 3031 - components: - - type: Transform - pos: -47.5,67.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Roller rink - uid: 3061 components: - type: Transform @@ -171542,17 +173571,28 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway Northeast - - uid: 9632 + - uid: 7059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-46.5 + rot: 3.141592653589793 rad + pos: 30.5,-37.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Evac east + id: Evac 2 + - uid: 7270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-51.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South evac A - uid: 9836 components: - type: Transform @@ -171681,17 +173721,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Toolshed - - uid: 24193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,58.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway NE 1 - uid: 24200 components: - type: Transform @@ -171725,6 +173754,16 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Disposals + - uid: 26895 + components: + - type: Transform + pos: 49.5,62.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Northeast evac pod - uid: 28427 components: - type: Transform @@ -171747,17 +173786,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Tri-department hallway - - uid: 28813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-37.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Northeast evac - uid: 28815 components: - type: Transform @@ -171780,6 +173808,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Cryosleep + - uid: 28927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South Evac B - uid: 31500 components: - type: Transform @@ -171801,16 +173840,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Crossroad - - uid: 31746 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Ship construction bay - uid: 31749 components: - type: Transform @@ -171833,28 +173862,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Gorilla and penguin enclosures - - uid: 31751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,61.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Northwest maint dock - - uid: 31762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-24.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Southwest maint dock - uid: 32105 components: - type: Transform @@ -171868,17 +173875,6 @@ entities: id: Project room - proto: SurveillanceCameraMedical entities: - - uid: 2983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-51.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Gene lab - uid: 3961 components: - type: Transform @@ -172051,7 +174047,7 @@ entities: parent: 12 - proto: SurveillanceCameraRouterScience entities: - - uid: 21917 + - uid: 3077 components: - type: Transform pos: -39.5,-21.5 @@ -172120,17 +174116,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Science front desk - - uid: 3977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-21.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Artifact room north - uid: 4129 components: - type: Transform @@ -172152,6 +174137,17 @@ entities: - SurveillanceCameraScience nameSet: True id: Robotics + - uid: 26799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,59.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science checkpoint - uid: 28803 components: - type: Transform @@ -172317,6 +174313,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Detective's office + - uid: 28790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,58.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig 2 - uid: 29287 components: - type: Transform @@ -172328,16 +174335,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Shooting range - - uid: 29288 - components: - - type: Transform - pos: -26.5,58.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prisoner EVA storage - uid: 29289 components: - type: Transform @@ -172349,37 +174346,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security evac pod and airlock - - uid: 31752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,72.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory exterior maints - - uid: 31753 - components: - - type: Transform - pos: -41.5,74.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory exterior space - - uid: 31754 - components: - - type: Transform - pos: -30.5,74.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory exterior space two - proto: SurveillanceCameraService entities: - uid: 10 @@ -172413,16 +174379,6 @@ entities: - SurveillanceCameraService nameSet: True id: Botany north - - uid: 5235 - components: - - type: Transform - pos: 7.5,-52.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor's room south - uid: 12287 components: - type: Transform @@ -172624,17 +174580,6 @@ entities: - SurveillanceCameraService nameSet: True id: Zookeeper's room - - uid: 28817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Penguin zoo - uid: 28818 components: - type: Transform @@ -172690,17 +174635,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Salvaging platform - - uid: 9828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-43.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage station dock - uid: 9829 components: - type: Transform @@ -172755,17 +174689,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo break room - - uid: 28824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-36.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage airlock - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 21981 @@ -172836,7 +174759,8 @@ entities: - uid: 29598 components: - type: Transform - pos: -43.46191,71.58315 + rot: -6.283185307179586 rad + pos: -50.39034,76.4461 parent: 12 - proto: Syringe entities: @@ -172877,6 +174801,12 @@ entities: parent: 12 - proto: Table entities: + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-29.5 + parent: 12 - uid: 508 components: - type: Transform @@ -172983,11 +174913,6 @@ entities: - type: Transform pos: -42.5,-41.5 parent: 12 - - uid: 2112 - components: - - type: Transform - pos: -43.5,72.5 - parent: 12 - uid: 2118 components: - type: Transform @@ -173028,6 +174953,17 @@ entities: rot: 3.141592653589793 rad pos: 31.5,22.5 parent: 12 + - uid: 2399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-24.5 + parent: 12 + - uid: 2418 + components: + - type: Transform + pos: 40.5,3.5 + parent: 12 - uid: 2472 components: - type: Transform @@ -173176,6 +175112,12 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-24.5 parent: 12 + - uid: 4540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 12 - uid: 4556 components: - type: Transform @@ -173212,11 +175154,6 @@ entities: - type: Transform pos: 8.5,-11.5 parent: 12 - - uid: 4851 - components: - - type: Transform - pos: 29.5,-8.5 - parent: 12 - uid: 4913 components: - type: Transform @@ -173272,11 +175209,6 @@ entities: - type: Transform pos: 12.5,-19.5 parent: 12 - - uid: 5513 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 12 - uid: 5515 components: - type: Transform @@ -173297,6 +175229,12 @@ entities: - type: Transform pos: 21.5,-23.5 parent: 12 + - uid: 5865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,52.5 + parent: 12 - uid: 5897 components: - type: Transform @@ -173332,6 +175270,12 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 12 + - uid: 6247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-24.5 + parent: 12 - uid: 6279 components: - type: Transform @@ -173353,6 +175297,12 @@ entities: - type: Transform pos: -0.5,-15.5 parent: 12 + - uid: 7717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,53.5 + parent: 12 - uid: 8224 components: - type: Transform @@ -173369,11 +175319,6 @@ entities: - type: Transform pos: 58.5,-29.5 parent: 12 - - uid: 8500 - components: - - type: Transform - pos: 55.5,-32.5 - parent: 12 - uid: 8501 components: - type: Transform @@ -173399,10 +175344,10 @@ entities: - type: Transform pos: 2.5,11.5 parent: 12 - - uid: 9077 + - uid: 9079 components: - type: Transform - pos: 38.5,-31.5 + pos: 41.5,-38.5 parent: 12 - uid: 9405 components: @@ -173683,11 +175628,6 @@ entities: - type: Transform pos: 2.5,-66.5 parent: 12 - - uid: 14954 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 12 - uid: 15090 components: - type: Transform @@ -173875,6 +175815,12 @@ entities: rot: 3.141592653589793 rad pos: -48.5,36.5 parent: 12 + - uid: 18643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-29.5 + parent: 12 - uid: 18868 components: - type: Transform @@ -174042,6 +175988,12 @@ entities: - type: Transform pos: -42.5,56.5 parent: 12 + - uid: 20876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-30.5 + parent: 12 - uid: 20879 components: - type: Transform @@ -174091,16 +176043,6 @@ entities: - type: Transform pos: -29.5,21.5 parent: 12 - - uid: 21673 - components: - - type: Transform - pos: 43.5,-37.5 - parent: 12 - - uid: 21674 - components: - - type: Transform - pos: 42.5,-37.5 - parent: 12 - uid: 21675 components: - type: Transform @@ -174285,6 +176227,11 @@ entities: - type: Transform pos: 3.5,57.5 parent: 12 + - uid: 23092 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 12 - uid: 23421 components: - type: Transform @@ -174631,6 +176578,24 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 12 + - uid: 26732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-32.5 + parent: 12 + - uid: 26748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-31.5 + parent: 12 + - uid: 26831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,52.5 + parent: 12 - uid: 27252 components: - type: Transform @@ -174679,15 +176644,40 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 12 + - uid: 29015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,72.5 + parent: 12 + - uid: 29023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,67.5 + parent: 12 - uid: 29180 components: - type: Transform pos: 54.5,60.5 parent: 12 - - uid: 29597 + - uid: 29425 components: - type: Transform - pos: -43.5,71.5 + rot: 3.141592653589793 rad + pos: -50.5,67.5 + parent: 12 + - uid: 29505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,71.5 + parent: 12 + - uid: 29506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,76.5 parent: 12 - uid: 29967 components: @@ -174777,11 +176767,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-0.5 parent: 12 - - uid: 31674 - components: - - type: Transform - pos: -62.5,-24.5 - parent: 12 - uid: 31813 components: - type: Transform @@ -174790,6 +176775,11 @@ entities: parent: 12 - proto: TableCarpet entities: + - uid: 19680 + components: + - type: Transform + pos: 36.5,-46.5 + parent: 12 - uid: 22653 components: - type: Transform @@ -174956,10 +176946,10 @@ entities: parent: 12 - proto: TableFrame entities: - - uid: 17599 + - uid: 27003 components: - type: Transform - pos: 38.5,-32.5 + pos: -55.5,-13.5 parent: 12 - uid: 30485 components: @@ -175227,11 +177217,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-38.5 parent: 12 - - uid: 8930 - components: - - type: Transform - pos: 49.5,-30.5 - parent: 12 - uid: 8938 components: - type: Transform @@ -175701,6 +177686,12 @@ entities: parent: 12 - proto: TableWood entities: + - uid: 1880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,59.5 + parent: 12 - uid: 1995 components: - type: Transform @@ -175729,6 +177720,11 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-60.5 parent: 12 + - uid: 3064 + components: + - type: Transform + pos: -53.5,61.5 + parent: 12 - uid: 3792 components: - type: Transform @@ -175750,15 +177746,17 @@ entities: - type: Transform pos: 17.5,49.5 parent: 12 - - uid: 6789 + - uid: 6189 components: - type: Transform - pos: -38.5,-23.5 + rot: 1.5707963267948966 rad + pos: -57.5,-15.5 parent: 12 - - uid: 6790 + - uid: 6191 components: - type: Transform - pos: -38.5,-24.5 + rot: -1.5707963267948966 rad + pos: -57.5,-16.5 parent: 12 - uid: 6800 components: @@ -175770,6 +177768,11 @@ entities: - type: Transform pos: 11.5,-35.5 parent: 12 + - uid: 7484 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 12 - uid: 7840 components: - type: Transform @@ -176275,35 +178278,38 @@ entities: - type: Transform pos: -23.5,-60.5 parent: 12 + - uid: 27000 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 12 - uid: 27063 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-11.5 parent: 12 + - uid: 27115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-14.5 + parent: 12 + - uid: 27407 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 12 - uid: 27412 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-12.5 parent: 12 - - uid: 28194 + - uid: 27502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-13.5 - parent: 12 - - uid: 28195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-13.5 - parent: 12 - - uid: 28202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-14.5 + pos: -54.5,61.5 parent: 12 - uid: 28203 components: @@ -176311,6 +178317,21 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,-14.5 parent: 12 + - uid: 29178 + components: + - type: Transform + pos: -55.5,61.5 + parent: 12 + - uid: 29179 + components: + - type: Transform + pos: -53.5,63.5 + parent: 12 + - uid: 30034 + components: + - type: Transform + pos: -53.5,54.5 + parent: 12 - uid: 30285 components: - type: Transform @@ -176427,15 +178448,22 @@ entities: parent: 12 - proto: TegCenter entities: - - uid: 12047 + - uid: 4969 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 11.5,15.5 parent: 12 - proto: TegCirculator entities: - - uid: 3132 + - uid: 23175 + components: + - type: Transform + pos: 12.5,15.5 + parent: 12 + - type: PointLight + color: '#FF3300FF' + - uid: 26652 components: - type: Transform rot: 3.141592653589793 rad @@ -176443,13 +178471,6 @@ entities: parent: 12 - type: PointLight color: '#FF3300FF' - - uid: 11944 - components: - - type: Transform - pos: 12.5,15.5 - parent: 12 - - type: PointLight - color: '#FF3300FF' - proto: TelecomServerCircuitboard entities: - uid: 15800 @@ -176460,7 +178481,7 @@ entities: - uid: 30021 components: - type: Transform - pos: 42.55103,-37.305542 + pos: 41.658985,-38.227173 parent: 12 - proto: TelecomServerFilledCargo entities: @@ -176518,119 +178539,87 @@ entities: - type: Transform pos: 36.5,-7.5 parent: 12 -- proto: TeslaCoil +- proto: TeslaCoilFlatpack entities: - - uid: 6741 + - uid: 24193 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 62.5,10.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic - - uid: 7152 + canCollide: False + - type: InsideEntityStorage + - uid: 24218 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 62.5,12.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic - - uid: 10923 + canCollide: False + - type: InsideEntityStorage + - uid: 24223 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 61.5,11.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic - - uid: 11019 + canCollide: False + - type: InsideEntityStorage + - uid: 24224 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 62.5,11.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic - - uid: 11039 + canCollide: False + - type: InsideEntityStorage + - uid: 24225 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 61.5,10.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic - - uid: 11435 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 61.5,12.5 - parent: 12 - - type: Physics - bodyType: Dynamic + canCollide: False + - type: InsideEntityStorage - proto: TeslaGenerator entities: - - uid: 26531 + - uid: 24322 components: - type: Transform - pos: 57.5,10.5 - parent: 12 -- proto: TeslaGroundingRod - entities: - - uid: 5528 - components: - - type: Transform - anchored: False - pos: 59.5,12.5 - parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 11304 - components: - - type: Transform - anchored: False - pos: 59.5,11.5 - parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 15687 - components: - - type: Transform - anchored: False pos: 60.5,12.5 parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 16349 +- proto: TeslaGroundingRodFlatpack + entities: + - uid: 25027 components: - type: Transform - anchored: False - pos: 60.5,11.5 - parent: 12 + parent: 24702 - type: Physics - bodyType: Dynamic - - uid: 26153 + canCollide: False + - type: InsideEntityStorage + - uid: 25038 components: - type: Transform - anchored: False - pos: 59.5,10.5 - parent: 12 + parent: 24702 - type: Physics - bodyType: Dynamic - - uid: 26530 + canCollide: False + - type: InsideEntityStorage + - uid: 25101 components: - type: Transform - anchored: False - pos: 60.5,10.5 - parent: 12 + parent: 24702 - type: Physics - bodyType: Dynamic + canCollide: False + - type: InsideEntityStorage + - uid: 25104 + components: + - type: Transform + parent: 24702 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25195 + components: + - type: Transform + parent: 24702 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ThermomachineFreezerMachineCircuitBoard entities: - uid: 11244 @@ -176710,12 +178699,6 @@ entities: parent: 12 - proto: ToiletDirtyWater entities: - - uid: 2845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-30.5 - parent: 12 - uid: 4218 components: - type: Transform @@ -176837,11 +178820,6 @@ entities: - type: Transform pos: 33.354294,-17.272806 parent: 12 - - uid: 5911 - components: - - type: Transform - pos: 33.33867,-18.366556 - parent: 12 - uid: 8880 components: - type: Transform @@ -176923,6 +178901,16 @@ entities: - type: Transform pos: 9.344754,68.50202 parent: 12 + - uid: 26804 + components: + - type: Transform + pos: -25.567787,56.37359 + parent: 12 + - uid: 29501 + components: + - type: Transform + pos: -39.568047,77.519104 + parent: 12 - proto: ToolboxGoldFilled entities: - uid: 15844 @@ -176957,12 +178945,8 @@ entities: - uid: 5912 components: - type: Transform - pos: 33.30742,-20.257181 - parent: 12 - - uid: 5913 - components: - - type: Transform - pos: 33.24492,-19.304056 + rot: -43.98229715025713 rad + pos: 33.372475,-18.152294 parent: 12 - uid: 8875 components: @@ -177030,19 +179014,10 @@ entities: parent: 12 - proto: ToyAmongPequeno entities: - - uid: 31361 - components: - - type: MetaData - name: among pequeña impostora - - type: Transform - rot: -12.566370614359172 rad - pos: -35.380093,-17.238117 - parent: 12 - - uid: 31362 + - uid: 21968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.80602,-17.76935 + pos: -35.497643,-17.508585 parent: 12 - proto: ToyFigurineAtmosTech entities: @@ -177304,6 +179279,11 @@ entities: parent: 12 - proto: ToyRubberDuck entities: + - uid: 5249 + components: + - type: Transform + pos: -39.435356,-15.409752 + parent: 12 - uid: 22045 components: - type: Transform @@ -177377,8 +179357,7 @@ entities: desc: You have no idea what masochist would make such a thing. name: modern art - type: Transform - rot: 1.5113994777937734E-10 rad - pos: 46.501263,-40.49688 + pos: 46.452984,-40.49026 parent: 12 - uid: 9991 components: @@ -177924,6 +179903,45 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 29625 + components: + - type: Transform + pos: -26.5,77.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 27716: + - Left: Forward + - Right: Reverse + - Middle: Off + 23177: + - Left: Forward + - Right: Reverse + - Middle: Off + 27498: + - Left: Forward + - Right: Reverse + - Middle: Off + 27040: + - Left: Forward + - Right: Reverse + - Middle: Off + 23122: + - Left: Forward + - Right: Reverse + - Middle: Off + 23700: + - Left: Forward + - Right: Reverse + - Middle: Off + 22952: + - Left: Forward + - Right: Reverse + - Middle: Off + 27329: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 2699 @@ -178059,6 +180077,11 @@ entities: - type: Transform pos: 27.5,46.5 parent: 12 + - uid: 27219 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 12 - proto: VendingMachineCargoDrobe entities: - uid: 10660 @@ -178334,10 +180357,10 @@ entities: parent: 12 - proto: VendingMachineEngivend entities: - - uid: 5521 + - uid: 10144 components: - type: Transform - pos: 8.5,-16.5 + pos: 16.5,-19.5 parent: 12 - uid: 27006 components: @@ -178459,6 +180482,13 @@ entities: - type: Transform pos: -11.468703,-21.51239 parent: 12 +- proto: VendingMachineRestockHappyHonk + entities: + - uid: 4897 + components: + - type: Transform + pos: -41.49812,-15.516537 + parent: 12 - proto: VendingMachineRestockRobustSoftdrinks entities: - uid: 12279 @@ -178532,6 +180562,11 @@ entities: - type: Transform pos: -28.5,50.5 parent: 12 + - uid: 29019 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 12 - proto: VendingMachineSnack entities: - uid: 14990 @@ -178587,6 +180622,11 @@ entities: parent: 12 - proto: VendingMachineSovietSoda entities: + - uid: 4481 + components: + - type: Transform + pos: 47.5,1.5 + parent: 12 - uid: 14953 components: - type: Transform @@ -178613,15 +180653,10 @@ entities: parent: 12 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 26669 + - uid: 26870 components: - type: Transform - pos: 11.5,-13.5 - parent: 12 - - uid: 27384 - components: - - type: Transform - pos: 58.5,-4.5 + pos: 10.5,-13.5 parent: 12 - proto: VendingMachineTankDispenserEVA entities: @@ -178645,6 +180680,11 @@ entities: - type: Transform pos: -44.5,50.5 parent: 12 + - uid: 25933 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 12 - uid: 27024 components: - type: Transform @@ -178679,11 +180719,6 @@ entities: - type: Transform pos: 46.5,-31.5 parent: 12 - - uid: 9223 - components: - - type: Transform - pos: 43.5,-38.5 - parent: 12 - uid: 12630 components: - type: Transform @@ -178780,6 +180815,11 @@ entities: - type: Transform pos: -4.5,0.5 parent: 12 + - uid: 21 + components: + - type: Transform + pos: -20.5,-65.5 + parent: 12 - uid: 27 components: - type: Transform @@ -178917,11 +180957,6 @@ entities: - type: Transform pos: -31.5,12.5 parent: 12 - - uid: 80 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 12 - uid: 95 components: - type: Transform @@ -179274,12 +181309,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 12 - - uid: 203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 12 - uid: 204 components: - type: Transform @@ -179297,54 +181326,6 @@ entities: - type: Transform pos: 7.5,27.5 parent: 12 - - uid: 211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 12 - - uid: 212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 12 - - uid: 213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 12 - - uid: 214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 12 - - uid: 215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 12 - - uid: 216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 12 - - uid: 217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 12 - - uid: 219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 12 - uid: 227 components: - type: Transform @@ -179355,11 +181336,6 @@ entities: - type: Transform pos: -55.5,13.5 parent: 12 - - uid: 240 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 12 - uid: 249 components: - type: Transform @@ -179376,6 +181352,11 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 12 + - uid: 369 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 12 - uid: 376 components: - type: Transform @@ -179543,18 +181524,6 @@ entities: - type: Transform pos: -13.5,-25.5 parent: 12 - - uid: 564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-17.5 - parent: 12 - - uid: 566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-14.5 - parent: 12 - uid: 569 components: - type: Transform @@ -179683,6 +181652,12 @@ entities: - type: Transform pos: -40.5,-18.5 parent: 12 + - uid: 615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-33.5 + parent: 12 - uid: 630 components: - type: Transform @@ -179831,23 +181806,11 @@ entities: - type: Transform pos: -56.5,22.5 parent: 12 - - uid: 745 + - uid: 747 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 12 - - uid: 746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 12 - - uid: 750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-13.5 + pos: -60.5,-31.5 parent: 12 - uid: 751 components: @@ -179855,12 +181818,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-20.5 parent: 12 - - uid: 773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 12 - uid: 775 components: - type: Transform @@ -179957,12 +181914,6 @@ entities: - type: Transform pos: -46.5,-54.5 parent: 12 - - uid: 948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-35.5 - parent: 12 - uid: 949 components: - type: Transform @@ -180063,12 +182014,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,50.5 parent: 12 - - uid: 1165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-17.5 - parent: 12 - uid: 1166 components: - type: Transform @@ -180081,40 +182026,16 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-17.5 parent: 12 - - uid: 1169 + - uid: 1285 components: - type: Transform - pos: -54.5,-37.5 - parent: 12 - - uid: 1316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-36.5 + pos: 52.5,-38.5 parent: 12 - uid: 1356 components: - type: Transform pos: 25.5,-11.5 parent: 12 - - uid: 1357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-36.5 - parent: 12 - - uid: 1375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-36.5 - parent: 12 - - uid: 1484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-31.5 - parent: 12 - uid: 1501 components: - type: Transform @@ -180125,6 +182046,11 @@ entities: - type: Transform pos: 26.5,-6.5 parent: 12 + - uid: 1552 + components: + - type: Transform + pos: 15.5,12.5 + parent: 12 - uid: 1556 components: - type: Transform @@ -180141,12 +182067,6 @@ entities: - type: Transform pos: -38.5,61.5 parent: 12 - - uid: 1755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-32.5 - parent: 12 - uid: 1840 components: - type: Transform @@ -180155,14 +182075,18 @@ entities: - uid: 1877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,73.5 + pos: -57.5,62.5 parent: 12 - uid: 1966 components: - type: Transform pos: 26.5,-11.5 parent: 12 + - uid: 1968 + components: + - type: Transform + pos: 51.5,-38.5 + parent: 12 - uid: 1991 components: - type: Transform @@ -180174,12 +182098,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 12 - - uid: 2032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,73.5 - parent: 12 - uid: 2051 components: - type: Transform @@ -180191,18 +182109,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,11.5 parent: 12 - - uid: 2078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,73.5 - parent: 12 - - uid: 2148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,73.5 - parent: 12 - uid: 2151 components: - type: Transform @@ -180248,6 +182154,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 12 + - uid: 2261 + components: + - type: Transform + pos: -54.5,64.5 + parent: 12 - uid: 2267 components: - type: Transform @@ -180283,12 +182194,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 12 - - uid: 2325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,73.5 - parent: 12 - uid: 2328 components: - type: Transform @@ -180300,6 +182205,18 @@ entities: - type: Transform pos: 39.5,-11.5 parent: 12 + - uid: 2397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 12 + - uid: 2412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 12 - uid: 2451 components: - type: Transform @@ -180391,11 +182308,6 @@ entities: - type: Transform pos: 26.5,0.5 parent: 12 - - uid: 2865 - components: - - type: Transform - pos: 5.5,-53.5 - parent: 12 - uid: 2875 components: - type: Transform @@ -180413,6 +182325,11 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,11.5 parent: 12 + - uid: 2891 + components: + - type: Transform + pos: -55.5,64.5 + parent: 12 - uid: 2935 components: - type: Transform @@ -180485,11 +182402,33 @@ entities: - type: Transform pos: -49.5,-52.5 parent: 12 + - uid: 3122 + components: + - type: Transform + pos: -57.5,58.5 + parent: 12 + - uid: 3148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,56.5 + parent: 12 - uid: 3158 components: - type: Transform pos: -10.5,3.5 parent: 12 + - uid: 3199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,57.5 + parent: 12 + - uid: 3469 + components: + - type: Transform + pos: 15.5,13.5 + parent: 12 - uid: 3516 components: - type: Transform @@ -180524,21 +182463,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 12 - - uid: 4013 + - uid: 4109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,11.5 - parent: 12 - - uid: 4103 - components: - - type: Transform - pos: 9.5,-50.5 - parent: 12 - - uid: 4105 - components: - - type: Transform - pos: 7.5,-53.5 + rot: 1.5707963267948966 rad + pos: -37.5,-18.5 parent: 12 - uid: 4386 components: @@ -180583,10 +182512,15 @@ entities: - type: Transform pos: -41.5,-54.5 parent: 12 + - uid: 4423 + components: + - type: Transform + pos: -49.5,56.5 + parent: 12 - uid: 4478 components: - type: Transform - pos: 14.5,-13.5 + pos: 7.5,-16.5 parent: 12 - uid: 4526 components: @@ -180599,12 +182533,6 @@ entities: - type: Transform pos: -47.5,-54.5 parent: 12 - - uid: 4531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-15.5 - parent: 12 - uid: 4533 components: - type: Transform @@ -180780,6 +182708,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,8.5 parent: 12 + - uid: 4959 + components: + - type: Transform + pos: -55.5,70.5 + parent: 12 - uid: 4960 components: - type: Transform @@ -180891,12 +182824,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 12 - - uid: 5078 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,1.5 - parent: 12 - uid: 5099 components: - type: Transform @@ -180957,11 +182884,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-5.5 parent: 12 - - uid: 5190 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 12 - uid: 5220 components: - type: Transform @@ -181020,23 +182942,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-16.5 parent: 12 - - uid: 5273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 12 - - uid: 5313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-50.5 - parent: 12 - - uid: 5365 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 12 - uid: 5391 components: - type: Transform @@ -181172,18 +183077,6 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 12 - - uid: 5618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-17.5 - parent: 12 - - uid: 5620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-15.5 - parent: 12 - uid: 5628 components: - type: Transform @@ -181218,11 +183111,6 @@ entities: - type: Transform pos: 13.5,6.5 parent: 12 - - uid: 5820 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 12 - uid: 5830 components: - type: Transform @@ -181257,6 +183145,23 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-47.5 parent: 12 + - uid: 5911 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 12 + - uid: 5916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 12 + - uid: 5927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-32.5 + parent: 12 - uid: 5950 components: - type: Transform @@ -181312,11 +183217,6 @@ entities: - type: Transform pos: 8.5,-4.5 parent: 12 - - uid: 6080 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 12 - uid: 6081 components: - type: Transform @@ -181337,39 +183237,22 @@ entities: - type: Transform pos: 26.5,2.5 parent: 12 + - uid: 6252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-55.5 + parent: 12 - uid: 6273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-40.5 + rot: 1.5707963267948966 rad + pos: -61.5,-16.5 parent: 12 - - uid: 6277 + - uid: 6288 components: - type: Transform - pos: 36.5,-40.5 - parent: 12 - - uid: 6278 - components: - - type: Transform - pos: 36.5,-41.5 - parent: 12 - - uid: 6298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-41.5 - parent: 12 - - uid: 6299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-40.5 - parent: 12 - - uid: 6317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-40.5 + pos: -17.5,-67.5 parent: 12 - uid: 6327 components: @@ -181377,12 +183260,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 12 - - uid: 6328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 12 - uid: 6329 components: - type: Transform @@ -181413,10 +183290,11 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-41.5 parent: 12 - - uid: 6678 + - uid: 6338 components: - type: Transform - pos: 32.5,-44.5 + rot: 1.5707963267948966 rad + pos: 54.5,-43.5 parent: 12 - uid: 6762 components: @@ -181591,30 +183469,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-38.5 parent: 12 - - uid: 7423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-39.5 - parent: 12 - - uid: 7424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-39.5 - parent: 12 - - uid: 7425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-39.5 - parent: 12 - - uid: 7426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-39.5 - parent: 12 - uid: 7427 components: - type: Transform @@ -181657,12 +183511,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-33.5 parent: 12 - - uid: 7435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-32.5 - parent: 12 - uid: 7436 components: - type: Transform @@ -181693,12 +183541,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-41.5 parent: 12 - - uid: 7480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-43.5 - parent: 12 - uid: 7487 components: - type: Transform @@ -182091,6 +183933,18 @@ entities: - type: Transform pos: 39.5,-12.5 parent: 12 + - uid: 8248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-57.5 + parent: 12 + - uid: 8336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-43.5 + parent: 12 - uid: 8438 components: - type: Transform @@ -182102,11 +183956,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 12 - - uid: 8447 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 12 - uid: 8450 components: - type: Transform @@ -182163,16 +184012,39 @@ entities: - type: Transform pos: 44.5,-8.5 parent: 12 + - uid: 8847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-54.5 + parent: 12 - uid: 8852 components: - type: Transform pos: 25.5,4.5 parent: 12 + - uid: 8896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-54.5 + parent: 12 + - uid: 8897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-54.5 + parent: 12 - uid: 8918 components: - type: Transform pos: 26.5,4.5 parent: 12 + - uid: 8930 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 12 - uid: 8958 components: - type: Transform @@ -182184,6 +184056,18 @@ entities: - type: Transform pos: 31.5,1.5 parent: 12 + - uid: 8979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-56.5 + parent: 12 + - uid: 8983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-57.5 + parent: 12 - uid: 9013 components: - type: Transform @@ -182230,6 +184114,23 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-17.5 parent: 12 + - uid: 9077 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 12 + - uid: 9083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-45.5 + parent: 12 + - uid: 9084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-44.5 + parent: 12 - uid: 9120 components: - type: Transform @@ -182247,17 +184148,53 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-3.5 parent: 12 + - uid: 9167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-45.5 + parent: 12 - uid: 9175 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,6.5 parent: 12 + - uid: 9211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-50.5 + parent: 12 + - uid: 9214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-50.5 + parent: 12 - uid: 9230 components: - type: Transform pos: 37.5,-40.5 parent: 12 + - uid: 9237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 12 + - uid: 9239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-50.5 + parent: 12 + - uid: 9245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,77.5 + parent: 12 - uid: 9297 components: - type: Transform @@ -182269,6 +184206,12 @@ entities: - type: Transform pos: 12.5,19.5 parent: 12 + - uid: 9378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,79.5 + parent: 12 - uid: 9379 components: - type: Transform @@ -182296,6 +184239,12 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 12 + - uid: 9433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-53.5 + parent: 12 - uid: 9443 components: - type: Transform @@ -182319,35 +184268,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,19.5 parent: 12 - - uid: 9514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,63.5 - parent: 12 - - uid: 9525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,56.5 - parent: 12 - uid: 9533 components: - type: Transform pos: 62.5,8.5 parent: 12 - - uid: 9534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,60.5 - parent: 12 - - uid: 9545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,50.5 - parent: 12 - uid: 9552 components: - type: Transform @@ -182358,36 +184283,6 @@ entities: - type: Transform pos: 56.5,10.5 parent: 12 - - uid: 9589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,54.5 - parent: 12 - - uid: 9590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,12.5 - parent: 12 - - uid: 9613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 12 - - uid: 9622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 12 - - uid: 9624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,58.5 - parent: 12 - uid: 9638 components: - type: Transform @@ -182406,18 +184301,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,12.5 parent: 12 - - uid: 9645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,11.5 - parent: 12 - - uid: 9652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,65.5 - parent: 12 - uid: 9669 components: - type: Transform @@ -182470,11 +184353,26 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,3.5 parent: 12 + - uid: 9820 + components: + - type: Transform + pos: 14.5,-56.5 + parent: 12 - uid: 9825 components: - type: Transform pos: -0.5,-16.5 parent: 12 + - uid: 9828 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 12 + - uid: 9840 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 12 - uid: 10040 components: - type: Transform @@ -182593,11 +184491,6 @@ entities: - type: Transform pos: -47.5,-44.5 parent: 12 - - uid: 10313 - components: - - type: Transform - pos: -54.5,-36.5 - parent: 12 - uid: 10316 components: - type: Transform @@ -182762,6 +184655,12 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,14.5 parent: 12 + - uid: 10602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-51.5 + parent: 12 - uid: 10608 components: - type: Transform @@ -182780,6 +184679,12 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 12 + - uid: 10626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,77.5 + parent: 12 - uid: 10632 components: - type: Transform @@ -183029,6 +184934,27 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,33.5 parent: 12 + - uid: 10812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,74.5 + parent: 12 + - uid: 10814 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 12 + - uid: 10815 + components: + - type: Transform + pos: 11.5,-56.5 + parent: 12 + - uid: 10817 + components: + - type: Transform + pos: -20.5,-64.5 + parent: 12 - uid: 10841 components: - type: Transform @@ -183053,6 +184979,12 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-6.5 parent: 12 + - uid: 10908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-18.5 + parent: 12 - uid: 10909 components: - type: Transform @@ -183066,7 +184998,8 @@ entities: - uid: 10911 components: - type: Transform - pos: 38.5,4.5 + rot: 1.5707963267948966 rad + pos: -61.5,-14.5 parent: 12 - uid: 10939 components: @@ -183080,24 +185013,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,4.5 parent: 12 - - uid: 10953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,66.5 - parent: 12 - - uid: 10954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,59.5 - parent: 12 - - uid: 10955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,73.5 - parent: 12 - uid: 10980 components: - type: Transform @@ -183138,11 +185053,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-4.5 parent: 12 - - uid: 11128 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 12 - uid: 11132 components: - type: Transform @@ -183377,6 +185287,18 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,27.5 parent: 12 + - uid: 11250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,77.5 + parent: 12 + - uid: 11259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-49.5 + parent: 12 - uid: 11260 components: - type: Transform @@ -183473,12 +185395,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,21.5 parent: 12 - - uid: 11389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,73.5 - parent: 12 - uid: 11404 components: - type: Transform @@ -183949,6 +185865,11 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-40.5 parent: 12 + - uid: 12640 + components: + - type: Transform + pos: -48.5,77.5 + parent: 12 - uid: 12641 components: - type: Transform @@ -184066,6 +185987,18 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,65.5 parent: 12 + - uid: 14210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-34.5 + parent: 12 + - uid: 14231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-37.5 + parent: 12 - uid: 14232 components: - type: Transform @@ -184200,6 +186133,11 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,69.5 parent: 12 + - uid: 14555 + components: + - type: Transform + pos: -54.5,74.5 + parent: 12 - uid: 14639 components: - type: Transform @@ -184784,6 +186722,12 @@ entities: - type: Transform pos: -30.5,12.5 parent: 12 + - uid: 16797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-11.5 + parent: 12 - uid: 16799 components: - type: Transform @@ -184796,6 +186740,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,46.5 parent: 12 + - uid: 17199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-43.5 + parent: 12 - uid: 17270 components: - type: Transform @@ -185109,12 +187059,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,48.5 parent: 12 - - uid: 17811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,48.5 - parent: 12 - uid: 17812 components: - type: Transform @@ -185217,23 +187161,16 @@ entities: rot: 3.141592653589793 rad pos: -43.5,47.5 parent: 12 - - uid: 17835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,73.5 - parent: 12 - uid: 17836 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,71.5 parent: 12 - - uid: 17920 + - uid: 17841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,68.5 + pos: -52.5,76.5 parent: 12 - uid: 17972 components: @@ -185241,6 +187178,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,6.5 parent: 12 + - uid: 18558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-43.5 + parent: 12 - uid: 18569 components: - type: Transform @@ -185560,12 +187503,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,9.5 parent: 12 - - uid: 19179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,53.5 - parent: 12 - uid: 19180 components: - type: Transform @@ -185613,21 +187550,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 12 - - uid: 19202 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 12 - - uid: 19203 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 12 - - uid: 19204 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 12 - uid: 19206 components: - type: Transform @@ -185778,16 +187700,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,54.5 parent: 12 - - uid: 19267 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 12 - - uid: 19268 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 12 - uid: 19272 components: - type: Transform @@ -186118,6 +188030,12 @@ entities: - type: Transform pos: -20.5,69.5 parent: 12 + - uid: 19635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-12.5 + parent: 12 - uid: 19646 components: - type: Transform @@ -186185,6 +188103,12 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,65.5 parent: 12 + - uid: 19847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-12.5 + parent: 12 - uid: 19862 components: - type: Transform @@ -186197,24 +188121,12 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-0.5 parent: 12 - - uid: 20097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,75.5 - parent: 12 - uid: 20268 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,66.5 parent: 12 - - uid: 20521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,75.5 - parent: 12 - uid: 20541 components: - type: Transform @@ -186237,6 +188149,12 @@ entities: - type: Transform pos: 38.5,-8.5 parent: 12 + - uid: 21695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-56.5 + parent: 12 - uid: 21876 components: - type: Transform @@ -186310,6 +188228,11 @@ entities: - type: Transform pos: -30.5,69.5 parent: 12 + - uid: 22033 + components: + - type: Transform + pos: -45.5,74.5 + parent: 12 - uid: 22035 components: - type: Transform @@ -186375,6 +188298,12 @@ entities: - type: Transform pos: 60.5,13.5 parent: 12 + - uid: 22110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-54.5 + parent: 12 - uid: 22164 components: - type: Transform @@ -186421,6 +188350,11 @@ entities: - type: Transform pos: -30.5,63.5 parent: 12 + - uid: 22194 + components: + - type: Transform + pos: -40.5,76.5 + parent: 12 - uid: 22216 components: - type: Transform @@ -186462,17 +188396,27 @@ entities: - type: Transform pos: 42.5,13.5 parent: 12 - - uid: 22324 + - uid: 22321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,59.5 + pos: -37.5,80.5 + parent: 12 + - uid: 22323 + components: + - type: Transform + pos: -34.5,76.5 parent: 12 - uid: 22327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,55.5 + rot: 3.141592653589793 rad + pos: -32.5,76.5 + parent: 12 + - uid: 22338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,75.5 parent: 12 - uid: 22532 components: @@ -186484,6 +188428,12 @@ entities: - type: Transform pos: 35.5,-40.5 parent: 12 + - uid: 22708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-57.5 + parent: 12 - uid: 22851 components: - type: Transform @@ -186543,52 +188493,21 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 12 - - uid: 23177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,63.5 - parent: 12 - uid: 23598 components: - type: Transform pos: 46.5,-6.5 parent: 12 - - uid: 23700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,59.5 - parent: 12 - uid: 23701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,59.5 - parent: 12 - - uid: 23703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,63.5 - parent: 12 - - uid: 23704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,59.5 + rot: 1.5707963267948966 rad + pos: -32.5,79.5 parent: 12 - uid: 23709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,59.5 - parent: 12 - - uid: 23719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,63.5 + pos: -52.5,77.5 parent: 12 - uid: 23895 components: @@ -186637,6 +188556,11 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,1.5 parent: 12 + - uid: 24300 + components: + - type: Transform + pos: -47.5,77.5 + parent: 12 - uid: 24302 components: - type: Transform @@ -186647,12 +188571,6 @@ entities: - type: Transform pos: 35.5,-36.5 parent: 12 - - uid: 24325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,2.5 - parent: 12 - uid: 24451 components: - type: Transform @@ -186664,15 +188582,11 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,71.5 parent: 12 - - uid: 24663 + - uid: 24493 components: - type: Transform - pos: -54.5,63.5 - parent: 12 - - uid: 24666 - components: - - type: Transform - pos: -52.5,63.5 + rot: -1.5707963267948966 rad + pos: 14.5,-57.5 parent: 12 - uid: 25037 components: @@ -186707,11 +188621,6 @@ entities: - type: Transform pos: 63.5,8.5 parent: 12 - - uid: 25136 - components: - - type: Transform - pos: 45.5,-40.5 - parent: 12 - uid: 25275 components: - type: Transform @@ -186735,17 +188644,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,56.5 parent: 12 - - uid: 25391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,55.5 - parent: 12 - - uid: 25393 - components: - - type: Transform - pos: -53.5,63.5 - parent: 12 - uid: 25418 components: - type: Transform @@ -186859,6 +188757,12 @@ entities: - type: Transform pos: -50.5,45.5 parent: 12 + - uid: 25454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,75.5 + parent: 12 - uid: 25526 components: - type: Transform @@ -186891,6 +188795,12 @@ entities: - type: Transform pos: 33.5,64.5 parent: 12 + - uid: 25557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-56.5 + parent: 12 - uid: 25564 components: - type: Transform @@ -186901,17 +188811,17 @@ entities: - type: Transform pos: -56.5,-40.5 parent: 12 + - uid: 25572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-57.5 + parent: 12 - uid: 25577 components: - type: Transform pos: -55.5,-40.5 parent: 12 - - uid: 25582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-34.5 - parent: 12 - uid: 25597 components: - type: Transform @@ -186941,8 +188851,7 @@ entities: - uid: 25889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-14.5 + pos: 11.5,-13.5 parent: 12 - uid: 25902 components: @@ -186970,11 +188879,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-27.5 parent: 12 - - uid: 26131 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 12 - uid: 26167 components: - type: Transform @@ -187008,6 +188912,18 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-1.5 parent: 12 + - uid: 26392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,27.5 + parent: 12 + - uid: 26394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,79.5 + parent: 12 - uid: 26416 components: - type: Transform @@ -187026,22 +188942,18 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,11.5 parent: 12 + - uid: 26447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-50.5 + parent: 12 - uid: 26448 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,6.5 parent: 12 - - uid: 26472 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 12 - - uid: 26473 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 12 - uid: 26475 components: - type: Transform @@ -187096,11 +189008,11 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,6.5 parent: 12 - - uid: 26634 + - uid: 26653 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-17.5 + pos: 58.5,-50.5 parent: 12 - uid: 26822 components: @@ -187114,23 +189026,94 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,13.5 parent: 12 - - uid: 26850 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 12 - uid: 26854 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 12 + - uid: 26908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-57.5 + parent: 12 + - uid: 26909 + components: + - type: Transform + pos: -17.5,-68.5 + parent: 12 + - uid: 26910 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 12 + - uid: 26912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-17.5 + parent: 12 + - uid: 26919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,77.5 + parent: 12 + - uid: 26949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 12 + - uid: 26956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-56.5 + parent: 12 + - uid: 26983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-43.5 + parent: 12 + - uid: 26995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-43.5 + parent: 12 + - uid: 26998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 12 + - uid: 27043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-13.5 + parent: 12 - uid: 27050 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-13.5 parent: 12 + - uid: 27116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-11.5 + parent: 12 + - uid: 27117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 12 - uid: 27147 components: - type: Transform @@ -187155,6 +189138,18 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,61.5 parent: 12 + - uid: 27318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,64.5 + parent: 12 + - uid: 27331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 12 - uid: 27334 components: - type: Transform @@ -187167,17 +189162,11 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-17.5 parent: 12 - - uid: 27336 + - uid: 27410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-35.5 - parent: 12 - - uid: 27403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-13.5 + rot: -1.5707963267948966 rad + pos: 39.5,-43.5 parent: 12 - uid: 27411 components: @@ -187212,12 +189201,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-26.5 parent: 12 - - uid: 27844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,73.5 - parent: 12 - uid: 27863 components: - type: Transform @@ -187234,10 +189217,10 @@ entities: - type: Transform pos: 5.5,-9.5 parent: 12 - - uid: 27980 + - uid: 27978 components: - type: Transform - pos: 5.5,-13.5 + pos: -22.5,-68.5 parent: 12 - uid: 27981 components: @@ -187254,15 +189237,20 @@ entities: - type: Transform pos: 5.5,-10.5 parent: 12 - - uid: 28046 + - uid: 27985 components: - type: Transform - pos: -4.5,-19.5 + pos: -20.5,-68.5 parent: 12 - - uid: 28047 + - uid: 28049 components: - type: Transform - pos: -3.5,-19.5 + pos: -19.5,-70.5 + parent: 12 + - uid: 28050 + components: + - type: Transform + pos: -20.5,-70.5 parent: 12 - uid: 28088 components: @@ -187290,11 +189278,6 @@ entities: - type: Transform pos: 30.5,34.5 parent: 12 - - uid: 28146 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 12 - uid: 28158 components: - type: Transform @@ -187307,41 +189290,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-11.5 parent: 12 - - uid: 28160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-11.5 - parent: 12 - - uid: 28161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-12.5 - parent: 12 - - uid: 28162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 12 - - uid: 28163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 12 - - uid: 28165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 12 - - uid: 28166 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 12 - uid: 28169 components: - type: Transform @@ -187359,54 +189307,18 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,60.5 parent: 12 - - uid: 28252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 - parent: 12 - uid: 28286 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-17.5 parent: 12 - - uid: 28287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-17.5 - parent: 12 - uid: 28288 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-17.5 parent: 12 - - uid: 28289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-16.5 - parent: 12 - - uid: 28290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-15.5 - parent: 12 - - uid: 28291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 12 - - uid: 28327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-14.5 - parent: 12 - uid: 28422 components: - type: Transform @@ -187422,6 +189334,18 @@ entities: - type: Transform pos: 6.5,-4.5 parent: 12 + - uid: 28635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-53.5 + parent: 12 + - uid: 28636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-52.5 + parent: 12 - uid: 28741 components: - type: Transform @@ -187468,6 +189392,43 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 12 + - uid: 28974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,75.5 + parent: 12 + - uid: 29009 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 12 + - uid: 29012 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 12 + - uid: 29060 + components: + - type: Transform + pos: -55.5,73.5 + parent: 12 + - uid: 29073 + components: + - type: Transform + pos: -57.5,59.5 + parent: 12 + - uid: 29103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,75.5 + parent: 12 + - uid: 29144 + components: + - type: Transform + pos: -35.5,80.5 + parent: 12 - uid: 29163 components: - type: Transform @@ -187480,6 +189441,11 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,60.5 parent: 12 + - uid: 29165 + components: + - type: Transform + pos: -32.5,77.5 + parent: 12 - uid: 29209 components: - type: Transform @@ -187503,6 +189469,62 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,64.5 parent: 12 + - uid: 29316 + components: + - type: Transform + pos: -39.5,80.5 + parent: 12 + - uid: 29317 + components: + - type: Transform + pos: -40.5,79.5 + parent: 12 + - uid: 29322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,74.5 + parent: 12 + - uid: 29347 + components: + - type: Transform + pos: -54.5,69.5 + parent: 12 + - uid: 29371 + components: + - type: Transform + pos: -52.5,66.5 + parent: 12 + - uid: 29423 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 12 + - uid: 29488 + components: + - type: Transform + pos: -53.5,49.5 + parent: 12 + - uid: 29491 + components: + - type: Transform + pos: -54.5,51.5 + parent: 12 + - uid: 29492 + components: + - type: Transform + pos: -54.5,52.5 + parent: 12 + - uid: 29494 + components: + - type: Transform + pos: -54.5,54.5 + parent: 12 + - uid: 29597 + components: + - type: Transform + pos: -25.5,80.5 + parent: 12 - uid: 29657 components: - type: Transform @@ -187537,11 +189559,6 @@ entities: - type: Transform pos: -27.5,-60.5 parent: 12 - - uid: 30533 - components: - - type: Transform - pos: -18.5,-65.5 - parent: 12 - uid: 30540 components: - type: Transform @@ -187552,21 +189569,6 @@ entities: - type: Transform pos: -15.5,-66.5 parent: 12 - - uid: 30546 - components: - - type: Transform - pos: -18.5,-69.5 - parent: 12 - - uid: 30547 - components: - - type: Transform - pos: -18.5,-68.5 - parent: 12 - - uid: 30549 - components: - - type: Transform - pos: -18.5,-66.5 - parent: 12 - uid: 30554 components: - type: Transform @@ -187666,21 +189668,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-68.5 parent: 12 - - uid: 31353 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 12 - - uid: 31354 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 12 - - uid: 31355 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 12 - uid: 31376 components: - type: Transform @@ -187754,10 +189741,20 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-6.5 parent: 12 - - uid: 1880 + - uid: 1061 components: - type: Transform - pos: -34.5,73.5 + pos: -56.5,63.5 + parent: 12 + - uid: 1065 + components: + - type: Transform + pos: -56.5,64.5 + parent: 12 + - uid: 1172 + components: + - type: Transform + pos: -17.5,-70.5 parent: 12 - uid: 2498 components: @@ -187765,6 +189762,12 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,30.5 parent: 12 + - uid: 3031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,55.5 + parent: 12 - uid: 3624 components: - type: Transform @@ -187794,7 +189797,7 @@ entities: - uid: 4956 components: - type: Transform - pos: -51.5,49.5 + pos: -55.5,69.5 parent: 12 - uid: 5048 components: @@ -187808,11 +189811,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,1.5 parent: 12 - - uid: 5095 - components: - - type: Transform - pos: -37.5,73.5 - parent: 12 - uid: 5247 components: - type: Transform @@ -187823,41 +189821,58 @@ entities: - type: Transform pos: 41.5,-3.5 parent: 12 + - uid: 6254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-17.5 + parent: 12 + - uid: 6258 + components: + - type: Transform + pos: -17.5,-65.5 + parent: 12 - uid: 7802 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-9.5 parent: 12 - - uid: 9378 + - uid: 8044 components: - type: Transform - pos: 44.5,-39.5 + rot: -1.5707963267948966 rad + pos: 34.5,-55.5 parent: 12 - - uid: 9531 + - uid: 8131 components: - type: Transform - pos: -51.5,57.5 + rot: -1.5707963267948966 rad + pos: 31.5,-57.5 parent: 12 - - uid: 9537 + - uid: 8724 components: - type: Transform - pos: -51.5,61.5 + rot: -1.5707963267948966 rad + pos: 11.5,-55.5 parent: 12 - - uid: 9546 + - uid: 8890 components: - type: Transform - pos: -51.5,51.5 + rot: -1.5707963267948966 rad + pos: 29.5,-54.5 parent: 12 - - uid: 9555 + - uid: 9240 components: - type: Transform - pos: -51.5,52.5 + rot: -1.5707963267948966 rad + pos: 36.5,-53.5 parent: 12 - - uid: 9568 + - uid: 9243 components: - type: Transform - pos: -51.5,53.5 + rot: -1.5707963267948966 rad + pos: 32.5,-55.5 parent: 12 - uid: 9579 components: @@ -187871,10 +189886,11 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,21.5 parent: 12 - - uid: 9644 + - uid: 9632 components: - type: Transform - pos: -51.5,55.5 + rot: -1.5707963267948966 rad + pos: 35.5,-54.5 parent: 12 - uid: 9672 components: @@ -187888,12 +189904,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,7.5 parent: 12 - - uid: 10166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-50.5 - parent: 12 - uid: 10279 components: - type: Transform @@ -187906,12 +189916,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-32.5 parent: 12 - - uid: 10626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-53.5 - parent: 12 - uid: 10636 components: - type: Transform @@ -187946,11 +189950,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,-49.5 parent: 12 - - uid: 11030 - components: - - type: Transform - pos: -41.5,73.5 - parent: 12 - uid: 11131 components: - type: Transform @@ -187975,17 +189974,24 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-3.5 parent: 12 - - uid: 11278 - components: - - type: Transform - pos: -42.5,73.5 - parent: 12 - uid: 11361 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-7.5 parent: 12 + - uid: 11377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-44.5 + parent: 12 + - uid: 11378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-45.5 + parent: 12 - uid: 11381 components: - type: Transform @@ -188129,11 +190135,10 @@ entities: - type: Transform pos: -50.5,-28.5 parent: 12 - - uid: 11941 + - uid: 12113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,69.5 + pos: -44.5,74.5 parent: 12 - uid: 12308 components: @@ -188158,12 +190163,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,71.5 parent: 12 - - uid: 14555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-47.5 - parent: 12 - uid: 14625 components: - type: Transform @@ -188175,11 +190174,10 @@ entities: - type: Transform pos: -52.5,-24.5 parent: 12 - - uid: 18709 + - uid: 17835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-49.5 + pos: -47.5,76.5 parent: 12 - uid: 19295 components: @@ -188187,6 +190185,11 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-51.5 parent: 12 + - uid: 19455 + components: + - type: Transform + pos: -19.5,-65.5 + parent: 12 - uid: 19694 components: - type: Transform @@ -188198,15 +190201,34 @@ entities: - type: Transform pos: -25.5,73.5 parent: 12 + - uid: 22043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-43.5 + parent: 12 - uid: 22044 components: - type: Transform pos: -50.5,-20.5 parent: 12 - - uid: 22876 + - uid: 22277 components: - type: Transform - pos: -59.5,-33.5 + rot: 3.141592653589793 rad + pos: -40.5,77.5 + parent: 12 + - uid: 22322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,77.5 + parent: 12 + - uid: 22325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,79.5 parent: 12 - uid: 22878 components: @@ -188224,20 +190246,35 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-6.5 parent: 12 + - uid: 23703 + components: + - type: Transform + pos: -32.5,75.5 + parent: 12 + - uid: 23710 + components: + - type: Transform + pos: -51.5,77.5 + parent: 12 + - uid: 23719 + components: + - type: Transform + pos: -55.5,58.5 + parent: 12 - uid: 23898 components: - type: Transform pos: -57.5,-24.5 parent: 12 - - uid: 25332 + - uid: 24254 components: - type: Transform - pos: 5.5,-54.5 + pos: -52.5,64.5 parent: 12 - - uid: 25403 + - uid: 25490 components: - type: Transform - pos: -51.5,64.5 + pos: -26.5,73.5 parent: 12 - uid: 25596 components: @@ -188261,15 +190298,10 @@ entities: - type: Transform pos: -51.5,-35.5 parent: 12 - - uid: 26086 + - uid: 25935 components: - type: Transform - pos: -58.5,-36.5 - parent: 12 - - uid: 26138 - components: - - type: Transform - pos: -59.5,-35.5 + pos: -2.5,-17.5 parent: 12 - uid: 26241 components: @@ -188288,6 +190320,87 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,70.5 parent: 12 + - uid: 26480 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 12 + - uid: 26530 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 12 + - uid: 26593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-37.5 + parent: 12 + - uid: 26599 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 12 + - uid: 26619 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 12 + - uid: 26632 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 12 + - uid: 26684 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 12 + - uid: 26693 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 12 + - uid: 26700 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 12 + - uid: 26707 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 12 + - uid: 26907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-57.5 + parent: 12 + - uid: 26911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-57.5 + parent: 12 + - uid: 26948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-17.5 + parent: 12 + - uid: 26978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-55.5 + parent: 12 + - uid: 27010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-43.5 + parent: 12 - uid: 27035 components: - type: Transform @@ -188300,22 +190413,76 @@ entities: rot: 3.141592653589793 rad pos: 63.5,9.5 parent: 12 + - uid: 27056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-40.5 + parent: 12 + - uid: 27058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-40.5 + parent: 12 + - uid: 27060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-42.5 + parent: 12 + - uid: 27119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-17.5 + parent: 12 - uid: 27157 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,7.5 parent: 12 + - uid: 27221 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 12 + - uid: 27225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,5.5 + parent: 12 + - uid: 27243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 12 + - uid: 27314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 12 - uid: 27322 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,2.5 parent: 12 - - uid: 27433 + - uid: 27325 components: - type: Transform - pos: -58.5,-16.5 + rot: 3.141592653589793 rad + pos: 41.5,4.5 + parent: 12 + - uid: 27336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,5.5 parent: 12 - uid: 27436 components: @@ -188328,6 +190495,11 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 12 + - uid: 27973 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 12 - uid: 27974 components: - type: Transform @@ -188346,6 +190518,11 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-4.5 parent: 12 + - uid: 28052 + components: + - type: Transform + pos: -18.5,-70.5 + parent: 12 - uid: 28053 components: - type: Transform @@ -188382,6 +190559,11 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,5.5 parent: 12 + - uid: 28069 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 12 - uid: 28070 components: - type: Transform @@ -188404,6 +190586,16 @@ entities: - type: Transform pos: 33.5,33.5 parent: 12 + - uid: 28200 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 12 + - uid: 28252 + components: + - type: Transform + pos: -22.5,-66.5 + parent: 12 - uid: 28283 components: - type: Transform @@ -188426,6 +190618,22 @@ entities: - type: Transform pos: 42.5,65.5 parent: 12 + - uid: 28637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-50.5 + parent: 12 + - uid: 28789 + components: + - type: Transform + pos: -55.5,74.5 + parent: 12 + - uid: 28793 + components: + - type: Transform + pos: 37.5,-48.5 + parent: 12 - uid: 28811 components: - type: Transform @@ -188446,12 +190654,142 @@ entities: - type: Transform pos: 32.5,6.5 parent: 12 + - uid: 28999 + components: + - type: Transform + pos: -53.5,64.5 + parent: 12 + - uid: 29011 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 12 + - uid: 29028 + components: + - type: Transform + pos: -56.5,58.5 + parent: 12 + - uid: 29031 + components: + - type: Transform + pos: -52.5,65.5 + parent: 12 + - uid: 29032 + components: + - type: Transform + pos: -57.5,63.5 + parent: 12 + - uid: 29065 + components: + - type: Transform + pos: -26.5,76.5 + parent: 12 + - uid: 29074 + components: + - type: Transform + pos: -25.5,76.5 + parent: 12 - uid: 29123 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,6.5 parent: 12 + - uid: 29148 + components: + - type: Transform + pos: -52.5,67.5 + parent: 12 + - uid: 29152 + components: + - type: Transform + pos: -52.5,48.5 + parent: 12 + - uid: 29159 + components: + - type: Transform + pos: -49.5,53.5 + parent: 12 + - uid: 29312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,79.5 + parent: 12 + - uid: 29321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,74.5 + parent: 12 + - uid: 29375 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 12 + - uid: 29395 + components: + - type: Transform + pos: -17.5,-66.5 + parent: 12 + - uid: 29487 + components: + - type: Transform + pos: -54.5,55.5 + parent: 12 + - uid: 29489 + components: + - type: Transform + pos: -53.5,50.5 + parent: 12 + - uid: 29490 + components: + - type: Transform + pos: -54.5,50.5 + parent: 12 + - uid: 29493 + components: + - type: Transform + pos: -54.5,53.5 + parent: 12 + - uid: 29495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,79.5 + parent: 12 + - uid: 29496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,79.5 + parent: 12 + - uid: 29507 + components: + - type: Transform + pos: -30.5,79.5 + parent: 12 + - uid: 29508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,78.5 + parent: 12 + - uid: 29511 + components: + - type: Transform + pos: -30.5,80.5 + parent: 12 + - uid: 29595 + components: + - type: Transform + pos: -26.5,80.5 + parent: 12 + - uid: 29596 + components: + - type: Transform + pos: -25.5,79.5 + parent: 12 - uid: 30020 components: - type: Transform @@ -188488,16 +190826,6 @@ entities: - type: Transform pos: -39.5,-57.5 parent: 12 - - uid: 30572 - components: - - type: Transform - pos: -18.5,-67.5 - parent: 12 - - uid: 30582 - components: - - type: Transform - pos: -17.5,-69.5 - parent: 12 - uid: 30700 components: - type: Transform @@ -188508,11 +190836,6 @@ entities: - type: Transform pos: 6.5,-58.5 parent: 12 - - uid: 30967 - components: - - type: Transform - pos: -18.5,-64.5 - parent: 12 - uid: 31173 components: - type: Transform @@ -188602,11 +190925,16 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 12 - - uid: 218 + - uid: 216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 + rot: -1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 12 + - uid: 217 + components: + - type: Transform + pos: 34.5,-32.5 parent: 12 - uid: 287 components: @@ -188941,12 +191269,6 @@ entities: - type: Transform pos: 42.5,49.5 parent: 12 - - uid: 747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-18.5 - parent: 12 - uid: 760 components: - type: Transform @@ -188967,12 +191289,6 @@ entities: - type: Transform pos: -39.5,-32.5 parent: 12 - - uid: 772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-19.5 - parent: 12 - uid: 815 components: - type: Transform @@ -189360,16 +191676,34 @@ entities: - type: Transform pos: -52.5,-40.5 parent: 12 + - uid: 1314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 12 + - uid: 2031 + components: + - type: Transform + pos: 49.5,60.5 + parent: 12 + - uid: 2032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,71.5 + parent: 12 - uid: 2040 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-15.5 parent: 12 - - uid: 2044 + - uid: 2112 components: - type: Transform - pos: -49.5,66.5 + rot: 3.141592653589793 rad + pos: -44.5,69.5 parent: 12 - uid: 2293 components: @@ -189383,12 +191717,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 12 - - uid: 2337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,5.5 - parent: 12 - uid: 2363 components: - type: Transform @@ -189419,6 +191747,17 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-57.5 parent: 12 + - uid: 2376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,63.5 + parent: 12 + - uid: 2383 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 12 - uid: 2433 components: - type: Transform @@ -189491,11 +191830,10 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,49.5 parent: 12 - - uid: 2467 + - uid: 2459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-48.5 + pos: 48.5,61.5 parent: 12 - uid: 2468 components: @@ -189509,6 +191847,12 @@ entities: rot: 3.141592653589793 rad pos: 42.5,10.5 parent: 12 + - uid: 2515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 12 - uid: 2596 components: - type: Transform @@ -189614,6 +191958,12 @@ entities: - type: Transform pos: -7.5,-58.5 parent: 12 + - uid: 2704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 12 - uid: 2710 components: - type: Transform @@ -189702,6 +192052,11 @@ entities: - type: Transform pos: 5.5,-37.5 parent: 12 + - uid: 2964 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 12 - uid: 2965 components: - type: Transform @@ -189896,12 +192251,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-22.5 parent: 12 - - uid: 3122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 12 - uid: 3194 components: - type: Transform @@ -189995,12 +192344,6 @@ entities: - type: Transform pos: 10.5,-35.5 parent: 12 - - uid: 4188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-15.5 - parent: 12 - uid: 4206 components: - type: Transform @@ -190130,10 +192473,20 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-35.5 parent: 12 - - uid: 4959 + - uid: 4694 components: - type: Transform - pos: -42.5,69.5 + pos: -7.5,-19.5 + parent: 12 + - uid: 4696 + components: + - type: Transform + pos: 46.5,59.5 + parent: 12 + - uid: 4732 + components: + - type: Transform + pos: 46.5,60.5 parent: 12 - uid: 4981 components: @@ -190179,6 +192532,12 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-32.5 parent: 12 + - uid: 5305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-29.5 + parent: 12 - uid: 5385 components: - type: Transform @@ -190200,7 +192559,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-18.5 + pos: 38.5,-29.5 parent: 12 - uid: 5447 components: @@ -190323,6 +192682,11 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-13.5 parent: 12 + - uid: 6194 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 12 - uid: 6248 components: - type: Transform @@ -190388,24 +192752,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-36.5 parent: 12 - - uid: 6313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-36.5 - parent: 12 - - uid: 6314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-36.5 - parent: 12 - - uid: 6315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-37.5 - parent: 12 - uid: 6316 components: - type: Transform @@ -190436,12 +192782,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-38.5 parent: 12 - - uid: 6323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-37.5 - parent: 12 - uid: 6324 components: - type: Transform @@ -190466,11 +192806,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-41.5 parent: 12 - - uid: 6687 - components: - - type: Transform - pos: 6.5,76.5 - parent: 12 - uid: 6742 components: - type: Transform @@ -190499,11 +192834,10 @@ entities: - type: Transform pos: -17.5,69.5 parent: 12 - - uid: 7101 + - uid: 6790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-33.5 + pos: -42.5,-14.5 parent: 12 - uid: 7105 components: @@ -190529,36 +192863,12 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-25.5 parent: 12 - - uid: 7111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-31.5 - parent: 12 - uid: 7113 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-29.5 parent: 12 - - uid: 7114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-29.5 - parent: 12 - - uid: 7116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-29.5 - parent: 12 - - uid: 7118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-29.5 - parent: 12 - uid: 7122 components: - type: Transform @@ -190872,8 +193182,7 @@ entities: - uid: 8333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,62.5 + pos: 9.5,-49.5 parent: 12 - uid: 8462 components: @@ -190898,6 +193207,24 @@ entities: - type: Transform pos: -9.5,2.5 parent: 12 + - uid: 8719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-49.5 + parent: 12 + - uid: 8723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-48.5 + parent: 12 + - uid: 8799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-50.5 + parent: 12 - uid: 8819 components: - type: Transform @@ -190919,21 +193246,37 @@ entities: - type: Transform pos: 35.5,10.5 parent: 12 + - uid: 8984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-49.5 + parent: 12 + - uid: 9059 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 12 + - uid: 9069 + components: + - type: Transform + pos: 41.5,-40.5 + parent: 12 - uid: 9133 components: - type: Transform pos: -44.5,66.5 parent: 12 - - uid: 9134 - components: - - type: Transform - pos: -42.5,71.5 - parent: 12 - uid: 9180 components: - type: Transform pos: 54.5,-7.5 parent: 12 + - uid: 9224 + components: + - type: Transform + pos: 49.5,61.5 + parent: 12 - uid: 9366 components: - type: Transform @@ -190966,17 +193309,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,24.5 parent: 12 - - uid: 9664 + - uid: 9663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-29.5 - parent: 12 - - uid: 9666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-29.5 + rot: 1.5707963267948966 rad + pos: 4.5,-21.5 parent: 12 - uid: 9736 components: @@ -191264,6 +193601,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-17.5 parent: 12 + - uid: 11010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 12 - uid: 11025 components: - type: Transform @@ -191326,21 +193669,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,32.5 parent: 12 - - uid: 11277 - components: - - type: Transform - pos: -50.5,66.5 - parent: 12 - - uid: 11299 - components: - - type: Transform - pos: -46.5,66.5 - parent: 12 - - uid: 11300 - components: - - type: Transform - pos: -47.5,66.5 - parent: 12 - uid: 11308 components: - type: Transform @@ -191381,6 +193709,12 @@ entities: - type: Transform pos: -35.5,-56.5 parent: 12 + - uid: 11400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,66.5 + parent: 12 - uid: 11405 components: - type: Transform @@ -192309,6 +194643,12 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-10.5 parent: 12 + - uid: 12999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-52.5 + parent: 12 - uid: 13487 components: - type: Transform @@ -192760,6 +195100,11 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,44.5 parent: 12 + - uid: 14184 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 12 - uid: 14197 components: - type: Transform @@ -192789,18 +195134,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,61.5 parent: 12 - - uid: 14210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,59.5 - parent: 12 - - uid: 14211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,58.5 - parent: 12 - uid: 14212 components: - type: Transform @@ -194201,6 +196534,11 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,42.5 parent: 12 + - uid: 19268 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 12 - uid: 19269 components: - type: Transform @@ -194233,12 +196571,6 @@ entities: - type: Transform pos: -4.5,-59.5 parent: 12 - - uid: 19560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,0.5 - parent: 12 - uid: 19567 components: - type: Transform @@ -194399,6 +196731,12 @@ entities: - type: Transform pos: -6.5,70.5 parent: 12 + - uid: 19649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-30.5 + parent: 12 - uid: 19658 components: - type: Transform @@ -195071,6 +197409,12 @@ entities: - type: Transform pos: -1.5,-60.5 parent: 12 + - uid: 22337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,76.5 + parent: 12 - uid: 22391 components: - type: Transform @@ -195114,6 +197458,11 @@ entities: - type: Transform pos: 0.5,-59.5 parent: 12 + - uid: 22876 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 12 - uid: 23087 components: - type: Transform @@ -195146,11 +197495,6 @@ entities: - type: Transform pos: -10.5,-20.5 parent: 12 - - uid: 23175 - components: - - type: Transform - pos: 48.5,-4.5 - parent: 12 - uid: 23363 components: - type: Transform @@ -195176,12 +197520,6 @@ entities: - type: Transform pos: 19.5,-29.5 parent: 12 - - uid: 23515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,60.5 - parent: 12 - uid: 23531 components: - type: Transform @@ -195226,6 +197564,12 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 12 + - uid: 23712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,66.5 + parent: 12 - uid: 23779 components: - type: Transform @@ -195256,6 +197600,12 @@ entities: - type: Transform pos: 10.5,-30.5 parent: 12 + - uid: 23896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,70.5 + parent: 12 - uid: 23897 components: - type: Transform @@ -195343,6 +197693,12 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,59.5 parent: 12 + - uid: 24255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,75.5 + parent: 12 - uid: 24371 components: - type: Transform @@ -195360,6 +197716,12 @@ entities: - type: Transform pos: -51.5,-41.5 parent: 12 + - uid: 24413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-47.5 + parent: 12 - uid: 24428 components: - type: Transform @@ -195371,6 +197733,12 @@ entities: - type: Transform pos: 27.5,-29.5 parent: 12 + - uid: 24471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-45.5 + parent: 12 - uid: 24495 components: - type: Transform @@ -195428,6 +197796,12 @@ entities: - type: Transform pos: -17.5,-59.5 parent: 12 + - uid: 24664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,75.5 + parent: 12 - uid: 24698 components: - type: Transform @@ -195474,11 +197848,6 @@ entities: - type: Transform pos: -15.5,-59.5 parent: 12 - - uid: 25200 - components: - - type: Transform - pos: 46.5,-4.5 - parent: 12 - uid: 25243 components: - type: Transform @@ -195495,6 +197864,12 @@ entities: rot: 3.141592653589793 rad pos: -7.5,0.5 parent: 12 + - uid: 25332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-51.5 + parent: 12 - uid: 25350 components: - type: Transform @@ -195503,7 +197878,14 @@ entities: - uid: 25402 components: - type: Transform - pos: -45.5,66.5 + rot: 1.5707963267948966 rad + pos: -52.5,50.5 + parent: 12 + - uid: 25465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-53.5 parent: 12 - uid: 25467 components: @@ -195521,11 +197903,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,63.5 parent: 12 - - uid: 25557 - components: - - type: Transform - pos: 61.5,67.5 - parent: 12 - uid: 25566 components: - type: Transform @@ -195552,6 +197929,12 @@ entities: - type: Transform pos: 24.5,-29.5 parent: 12 + - uid: 25582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-44.5 + parent: 12 - uid: 25583 components: - type: Transform @@ -195560,7 +197943,8 @@ entities: - uid: 25593 components: - type: Transform - pos: -59.5,-29.5 + rot: -1.5707963267948966 rad + pos: 35.5,-45.5 parent: 12 - uid: 25594 components: @@ -195613,12 +197997,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-41.5 parent: 12 - - uid: 25662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,5.5 - parent: 12 - uid: 25664 components: - type: Transform @@ -195631,6 +198009,11 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,15.5 parent: 12 + - uid: 25679 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 12 - uid: 25683 components: - type: Transform @@ -195668,11 +198051,22 @@ entities: - type: Transform pos: -2.5,70.5 parent: 12 + - uid: 25936 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 12 - uid: 25937 components: - type: Transform pos: -26.5,-11.5 parent: 12 + - uid: 26077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-46.5 + parent: 12 - uid: 26098 components: - type: Transform @@ -195713,6 +198107,11 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 12 + - uid: 26131 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 12 - uid: 26155 components: - type: Transform @@ -195748,6 +198147,11 @@ entities: rot: 3.141592653589793 rad pos: -43.5,62.5 parent: 12 + - uid: 26205 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 12 - uid: 26238 components: - type: Transform @@ -195765,15 +198169,28 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,16.5 parent: 12 + - uid: 26393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-43.5 + parent: 12 + - uid: 26418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 12 - uid: 26449 components: - type: Transform pos: 11.5,90.5 parent: 12 - - uid: 26480 + - uid: 26472 components: - type: Transform - pos: 29.5,-29.5 + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 parent: 12 - uid: 26618 components: @@ -195781,12 +198198,48 @@ entities: rot: 3.141592653589793 rad pos: 32.5,9.5 parent: 12 + - uid: 26691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 12 - uid: 26698 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,9.5 parent: 12 + - uid: 26718 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 12 + - uid: 26759 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 12 + - uid: 26782 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 12 + - uid: 26785 + components: + - type: Transform + pos: 46.5,58.5 + parent: 12 + - uid: 26794 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 12 + - uid: 26798 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 12 - uid: 26830 components: - type: Transform @@ -195804,6 +198257,26 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-16.5 parent: 12 + - uid: 26953 + components: + - type: Transform + pos: 39.5,-40.5 + parent: 12 + - uid: 26954 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 12 + - uid: 27011 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 12 + - uid: 27015 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 12 - uid: 27025 components: - type: Transform @@ -195830,6 +198303,11 @@ entities: - type: Transform pos: 31.5,-30.5 parent: 12 + - uid: 27042 + components: + - type: Transform + pos: 9.5,-53.5 + parent: 12 - uid: 27049 components: - type: Transform @@ -195842,6 +198320,41 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-4.5 parent: 12 + - uid: 27061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-39.5 + parent: 12 + - uid: 27068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-49.5 + parent: 12 + - uid: 27069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-40.5 + parent: 12 + - uid: 27070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-44.5 + parent: 12 + - uid: 27074 + components: + - type: Transform + pos: 53.5,-39.5 + parent: 12 + - uid: 27097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-41.5 + parent: 12 - uid: 27098 components: - type: Transform @@ -195853,10 +198366,41 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-5.5 parent: 12 - - uid: 27152 + - uid: 27120 components: - type: Transform - pos: -57.5,-18.5 + pos: -37.5,-13.5 + parent: 12 + - uid: 27121 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 12 + - uid: 27122 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 12 + - uid: 27127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 12 + - uid: 27128 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 12 + - uid: 27148 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 12 + - uid: 27156 + components: + - type: Transform + pos: 5.5,-52.5 parent: 12 - uid: 27189 components: @@ -195864,27 +198408,43 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-5.5 parent: 12 + - uid: 27210 + components: + - type: Transform + pos: 5.5,-53.5 + parent: 12 - uid: 27258 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 12 + - uid: 27313 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 12 - uid: 27320 components: - type: Transform pos: -57.5,-19.5 parent: 12 - - uid: 27329 + - uid: 27326 components: - type: Transform - pos: -51.5,-17.5 + rot: 1.5707963267948966 rad + pos: -51.5,58.5 parent: 12 - - uid: 27331 + - uid: 27353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-18.5 + rot: 1.5707963267948966 rad + pos: -52.5,53.5 + parent: 12 + - uid: 27398 + components: + - type: Transform + pos: 45.5,-36.5 parent: 12 - uid: 27432 components: @@ -195934,11 +198494,6 @@ entities: - type: Transform pos: -18.5,18.5 parent: 12 - - uid: 27914 - components: - - type: Transform - pos: 30.5,76.5 - parent: 12 - uid: 27925 components: - type: Transform @@ -196061,12 +198616,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-13.5 parent: 12 - - uid: 28297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-17.5 - parent: 12 - uid: 28309 components: - type: Transform @@ -196093,17 +198642,33 @@ entities: - type: Transform pos: 6.5,83.5 parent: 12 - - uid: 28464 + - uid: 28437 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-27.5 + pos: -42.5,-15.5 parent: 12 - uid: 28549 components: - type: Transform pos: -24.5,-1.5 parent: 12 + - uid: 28633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-51.5 + parent: 12 + - uid: 28897 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 12 + - uid: 28903 + components: + - type: Transform + pos: 47.5,-35.5 + parent: 12 - uid: 28924 components: - type: Transform @@ -196115,22 +198680,73 @@ entities: rot: 3.141592653589793 rad pos: 53.5,11.5 parent: 12 + - uid: 29022 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 12 + - uid: 29025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,66.5 + parent: 12 + - uid: 29037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,52.5 + parent: 12 - uid: 29117 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-15.5 parent: 12 + - uid: 29149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,60.5 + parent: 12 - uid: 29208 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,48.5 parent: 12 - - uid: 29594 + - uid: 29303 components: - type: Transform - pos: -42.5,70.5 + pos: -52.5,63.5 + parent: 12 + - uid: 29308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,58.5 + parent: 12 + - uid: 29320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,56.5 + parent: 12 + - uid: 29351 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 12 + - uid: 29355 + components: + - type: Transform + pos: -51.5,66.5 + parent: 12 + - uid: 29376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,67.5 parent: 12 - uid: 30000 components: @@ -196155,11 +198771,6 @@ entities: - type: Transform pos: -26.5,-59.5 parent: 12 - - uid: 30537 - components: - - type: Transform - pos: -17.5,-66.5 - parent: 12 - uid: 30567 components: - type: Transform @@ -196221,21 +198832,11 @@ entities: - type: Transform pos: -5.5,-65.5 parent: 12 - - uid: 31356 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 12 - uid: 31357 components: - type: Transform pos: -34.5,-13.5 parent: 12 - - uid: 31385 - components: - - type: Transform - pos: 4.5,-61.5 - parent: 12 - uid: 31387 components: - type: Transform @@ -196268,19 +198869,8 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-2.5 parent: 12 - - uid: 31889 - components: - - type: Transform - pos: 41.5,1.5 - parent: 12 - proto: WallSolidDiagonal entities: - - uid: 24234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,64.5 - parent: 12 - uid: 27255 components: - type: Transform @@ -196306,10 +198896,15 @@ entities: parent: 12 - proto: WallSolidRust entities: - - uid: 1878 + - uid: 750 components: - type: Transform - pos: -42.5,68.5 + pos: -35.5,-13.5 + parent: 12 + - uid: 1359 + components: + - type: Transform + pos: 42.5,-40.5 parent: 12 - uid: 1965 components: @@ -196327,11 +198922,32 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,13.5 parent: 12 + - uid: 2337 + components: + - type: Transform + pos: 42.5,-38.5 + parent: 12 - uid: 2361 components: - type: Transform pos: 41.5,-24.5 parent: 12 + - uid: 2382 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 12 + - uid: 2398 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 12 + - uid: 2408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-20.5 + parent: 12 - uid: 2572 components: - type: Transform @@ -196343,29 +198959,54 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,18.5 parent: 12 + - uid: 2739 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 12 + - uid: 2858 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 12 + - uid: 2862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-49.5 + parent: 12 - uid: 3465 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-32.5 parent: 12 - - uid: 5123 + - uid: 4167 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,4.5 + pos: -33.5,-13.5 parent: 12 - - uid: 6101 + - uid: 4701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-21.5 + pos: -6.5,-16.5 parent: 12 - - uid: 6775 + - uid: 5095 + components: + - type: Transform + pos: -44.5,73.5 + parent: 12 + - uid: 5829 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-2.5 + pos: -47.5,67.5 + parent: 12 + - uid: 6256 + components: + - type: Transform + pos: 47.5,-36.5 parent: 12 - uid: 7322 components: @@ -196373,12 +199014,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 12 - - uid: 7717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-4.5 - parent: 12 - uid: 7794 components: - type: Transform @@ -196391,16 +199026,54 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,69.5 parent: 12 + - uid: 8297 + components: + - type: Transform + pos: 8.5,-53.5 + parent: 12 + - uid: 8725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-46.5 + parent: 12 - uid: 8832 components: - type: Transform pos: 47.5,-40.5 parent: 12 + - uid: 9174 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 12 + - uid: 9178 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 12 + - uid: 9255 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 12 + - uid: 9568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,69.5 + parent: 12 - uid: 9631 components: - type: Transform pos: -60.5,-51.5 parent: 12 + - uid: 9671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-47.5 + parent: 12 - uid: 10717 components: - type: Transform @@ -196416,11 +199089,6 @@ entities: - type: Transform pos: -59.5,-56.5 parent: 12 - - uid: 11297 - components: - - type: Transform - pos: -48.5,66.5 - parent: 12 - uid: 11332 components: - type: Transform @@ -196444,11 +199112,10 @@ entities: rot: 3.141592653589793 rad pos: 42.5,11.5 parent: 12 - - uid: 12994 + - uid: 12060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-21.5 + pos: -56.5,-17.5 parent: 12 - uid: 13794 components: @@ -196635,6 +199302,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,23.5 parent: 12 + - uid: 18627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-45.5 + parent: 12 - uid: 18674 components: - type: Transform @@ -196653,6 +199326,11 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,27.5 parent: 12 + - uid: 19265 + components: + - type: Transform + pos: 45.5,-35.5 + parent: 12 - uid: 19543 components: - type: Transform @@ -196705,6 +199383,12 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,61.5 parent: 12 + - uid: 19631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-29.5 + parent: 12 - uid: 19632 components: - type: Transform @@ -196747,17 +199431,17 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,63.5 parent: 12 + - uid: 20776 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 12 - uid: 21608 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,64.5 parent: 12 - - uid: 22141 - components: - - type: Transform - pos: 47.5,0.5 - parent: 12 - uid: 22145 components: - type: Transform @@ -196773,6 +199457,17 @@ entities: - type: Transform pos: 36.5,16.5 parent: 12 + - uid: 22328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,76.5 + parent: 12 + - uid: 22855 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 12 - uid: 23536 components: - type: Transform @@ -196785,6 +199480,11 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-9.5 parent: 12 + - uid: 23713 + components: + - type: Transform + pos: -49.5,66.5 + parent: 12 - uid: 24333 components: - type: Transform @@ -196816,29 +199516,23 @@ entities: - type: Transform pos: 31.5,19.5 parent: 12 + - uid: 24663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,75.5 + parent: 12 - uid: 24701 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-33.5 parent: 12 - - uid: 24702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-33.5 - parent: 12 - uid: 24982 components: - type: Transform pos: -21.5,51.5 parent: 12 - - uid: 25027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-33.5 - parent: 12 - uid: 25035 components: - type: Transform @@ -196850,18 +199544,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-33.5 parent: 12 - - uid: 25101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 12 - - uid: 25104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-30.5 - parent: 12 - uid: 25142 components: - type: Transform @@ -196887,11 +199569,11 @@ entities: - type: Transform pos: 2.5,-56.5 parent: 12 - - uid: 25572 + - uid: 25585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,0.5 + rot: -1.5707963267948966 rad + pos: 36.5,-45.5 parent: 12 - uid: 25591 components: @@ -196904,11 +199586,10 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,34.5 parent: 12 - - uid: 25663 + - uid: 25662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,5.5 + pos: 42.5,-39.5 parent: 12 - uid: 25670 components: @@ -196970,31 +199651,31 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,65.5 parent: 12 + - uid: 25934 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 12 - uid: 26071 components: - type: Transform pos: 48.5,15.5 parent: 12 + - uid: 26153 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 12 - uid: 26244 components: - type: Transform pos: -25.5,-8.5 parent: 12 - - uid: 26246 - components: - - type: Transform - pos: 5.5,-52.5 - parent: 12 - uid: 26247 components: - type: Transform pos: -25.5,-7.5 parent: 12 - - uid: 26250 - components: - - type: Transform - pos: -59.5,-30.5 - parent: 12 - uid: 26313 components: - type: Transform @@ -197010,6 +199691,16 @@ entities: - type: Transform pos: -51.5,-47.5 parent: 12 + - uid: 26425 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 12 + - uid: 26434 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 12 - uid: 26567 components: - type: Transform @@ -197020,11 +199711,47 @@ entities: - type: Transform pos: -24.5,-13.5 parent: 12 + - uid: 26678 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 12 + - uid: 26697 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 12 + - uid: 26706 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 12 + - uid: 26716 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 12 - uid: 26725 components: - type: Transform pos: -25.5,-12.5 parent: 12 + - uid: 26753 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 12 + - uid: 26781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 12 + - uid: 26788 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 12 - uid: 26816 components: - type: Transform @@ -197041,6 +199768,17 @@ entities: - type: Transform pos: -26.5,-14.5 parent: 12 + - uid: 26902 + components: + - type: Transform + pos: -55.5,-35.5 + parent: 12 + - uid: 26920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-51.5 + parent: 12 - uid: 26964 components: - type: Transform @@ -197052,35 +199790,113 @@ entities: - type: Transform pos: -20.5,54.5 parent: 12 + - uid: 26996 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 12 + - uid: 27013 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 12 + - uid: 27014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 12 + - uid: 27017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-17.5 + parent: 12 - uid: 27023 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-2.5 parent: 12 + - uid: 27041 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 12 + - uid: 27047 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 12 + - uid: 27083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 12 + - uid: 27103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-31.5 + parent: 12 + - uid: 27113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-13.5 + parent: 12 + - uid: 27118 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 12 + - uid: 27152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-40.5 + parent: 12 + - uid: 27154 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 12 + - uid: 27161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,75.5 + parent: 12 - uid: 27172 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,17.5 parent: 12 + - uid: 27203 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 12 - uid: 27217 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-2.5 parent: 12 + - uid: 27224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-19.5 + parent: 12 - uid: 27226 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,15.5 parent: 12 - - uid: 27239 - components: - - type: Transform - pos: -53.5,-17.5 - parent: 12 - uid: 27297 components: - type: Transform @@ -197193,11 +200009,6 @@ entities: - type: Transform pos: 53.5,9.5 parent: 12 - - uid: 28199 - components: - - type: Transform - pos: -54.5,-18.5 - parent: 12 - uid: 28204 components: - type: Transform @@ -197215,12 +200026,33 @@ entities: rot: 3.141592653589793 rad pos: 35.5,13.5 parent: 12 + - uid: 28308 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 12 + - uid: 28317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 12 - uid: 28391 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,22.5 parent: 12 + - uid: 28419 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 12 + - uid: 28648 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 12 - uid: 28701 components: - type: Transform @@ -197244,27 +200076,131 @@ entities: - type: Transform pos: 49.5,9.5 parent: 12 - - uid: 29115 + - uid: 29029 + components: + - type: Transform + pos: -52.5,55.5 + parent: 12 + - uid: 29092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,72.5 + parent: 12 + - uid: 29141 + components: + - type: Transform + pos: -51.5,63.5 + parent: 12 + - uid: 29142 + components: + - type: Transform + pos: -53.5,58.5 + parent: 12 + - uid: 29143 + components: + - type: Transform + pos: -51.5,61.5 + parent: 12 + - uid: 29162 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-27.5 + pos: -53.5,53.5 parent: 12 - - uid: 29595 + - uid: 29177 components: - type: Transform - pos: -42.5,72.5 + pos: -52.5,57.5 + parent: 12 + - uid: 29190 + components: + - type: Transform + pos: -52.5,61.5 + parent: 12 + - uid: 29315 + components: + - type: Transform + pos: -52.5,59.5 + parent: 12 + - uid: 29344 + components: + - type: Transform + pos: -16.5,69.5 + parent: 12 + - uid: 29348 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 12 + - uid: 29352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,67.5 + parent: 12 + - uid: 29353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,67.5 + parent: 12 + - uid: 29374 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 12 + - uid: 29512 + components: + - type: Transform + pos: -32.5,74.5 parent: 12 - uid: 29603 components: - type: Transform pos: -42.5,66.5 parent: 12 + - uid: 29628 + components: + - type: Transform + pos: -30.5,77.5 + parent: 12 + - uid: 29631 + components: + - type: Transform + pos: -32.5,73.5 + parent: 12 + - uid: 29632 + components: + - type: Transform + pos: -34.5,73.5 + parent: 12 + - uid: 29633 + components: + - type: Transform + pos: -37.5,73.5 + parent: 12 - uid: 29720 components: - type: Transform pos: -49.5,48.5 parent: 12 + - uid: 29820 + components: + - type: Transform + pos: -42.5,70.5 + parent: 12 + - uid: 29826 + components: + - type: Transform + pos: -40.5,73.5 + parent: 12 + - uid: 29980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,54.5 + parent: 12 - uid: 30200 components: - type: Transform @@ -197281,12 +200217,6 @@ entities: - type: Transform pos: -32.5,-55.5 parent: 12 - - uid: 30834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-24.5 - parent: 12 - uid: 30890 components: - type: Transform @@ -197581,11 +200511,6 @@ entities: parent: 12 - proto: WardrobePrisonFilled entities: - - uid: 8723 - components: - - type: Transform - pos: 53.5,-33.5 - parent: 12 - uid: 19371 components: - type: Transform @@ -197626,13 +200551,6 @@ entities: - type: Transform pos: 52.5,-36.5 parent: 12 -- proto: WardrobeSalvageFilled - entities: - - uid: 9969 - components: - - type: Transform - pos: 57.5,-39.5 - parent: 12 - proto: WardrobeScienceFilled entities: - uid: 2005 @@ -197832,10 +200750,10 @@ entities: - type: Transform pos: 55.5,11.5 parent: 12 - - uid: 9211 + - uid: 9652 components: - type: Transform - pos: 46.5,-36.5 + pos: -51.5,50.5 parent: 12 - uid: 10397 components: @@ -197852,16 +200770,16 @@ entities: - type: Transform pos: -7.5,19.5 parent: 12 + - uid: 22107 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 12 - uid: 23655 components: - type: Transform pos: 48.5,49.5 parent: 12 - - uid: 24225 - components: - - type: Transform - pos: 46.5,59.5 - parent: 12 - uid: 25047 components: - type: Transform @@ -197882,21 +200800,31 @@ entities: - type: Transform pos: 58.5,52.5 parent: 12 + - uid: 26795 + components: + - type: Transform + pos: 45.5,59.5 + parent: 12 + - uid: 27234 + components: + - type: Transform + pos: 44.5,-37.5 + parent: 12 - uid: 27328 components: - type: Transform pos: -50.5,-19.5 parent: 12 - - uid: 28652 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 12 - uid: 28842 components: - type: Transform pos: 29.5,12.5 parent: 12 + - uid: 29644 + components: + - type: Transform + pos: -36.5,73.5 + parent: 12 - uid: 31370 components: - type: Transform @@ -198161,6 +201089,13 @@ entities: - type: Transform pos: 8.550257,-23.095434 parent: 12 +- proto: WelderMini + entities: + - uid: 5875 + components: + - type: Transform + pos: -22.4267,53.76478 + parent: 12 - proto: WeldingFuelTankFull entities: - uid: 1765 @@ -198168,6 +201103,11 @@ entities: - type: Transform pos: -50.5,-32.5 parent: 12 + - uid: 2845 + components: + - type: Transform + pos: 45.5,58.5 + parent: 12 - uid: 4243 components: - type: Transform @@ -198193,6 +201133,11 @@ entities: - type: Transform pos: 81.5,-36.5 parent: 12 + - uid: 9997 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 12 - uid: 10391 components: - type: Transform @@ -198238,11 +201183,6 @@ entities: - type: Transform pos: 46.5,-3.5 parent: 12 - - uid: 24224 - components: - - type: Transform - pos: 46.5,58.5 - parent: 12 - uid: 25044 components: - type: Transform @@ -198273,16 +201213,16 @@ entities: - type: Transform pos: 52.5,2.5 parent: 12 + - uid: 26681 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 12 - uid: 27846 components: - type: Transform pos: -15.5,69.5 parent: 12 - - uid: 28651 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 12 - uid: 28750 components: - type: Transform @@ -198293,6 +201233,16 @@ entities: - type: Transform pos: 29.5,11.5 parent: 12 + - uid: 29974 + components: + - type: Transform + pos: -51.5,54.5 + parent: 12 + - uid: 29997 + components: + - type: Transform + pos: -35.5,73.5 + parent: 12 - uid: 30402 components: - type: Transform @@ -198310,11 +201260,6 @@ entities: parent: 12 - proto: WetFloorSign entities: - - uid: 2721 - components: - - type: Transform - pos: 36.92181,-30.370167 - parent: 12 - uid: 12247 components: - type: Transform @@ -198325,16 +201270,16 @@ entities: - type: Transform pos: 48.600037,20.622837 parent: 12 - - uid: 22158 - components: - - type: Transform - pos: 36.62012,-30.786295 - parent: 12 - uid: 25014 components: - type: Transform pos: 8.533746,65.62123 parent: 12 + - uid: 26917 + components: + - type: Transform + pos: -61.558186,-27.004528 + parent: 12 - proto: WheatSeeds entities: - uid: 23543 @@ -198392,16 +201337,6 @@ entities: - type: Transform pos: -38.5,-21.5 parent: 12 - - uid: 8833 - components: - - type: Transform - pos: 49.5,-29.5 - parent: 12 - - uid: 8928 - components: - - type: Transform - pos: 48.5,-29.5 - parent: 12 - uid: 12577 components: - type: Transform @@ -198471,12 +201406,6 @@ entities: - type: Transform pos: -5.5,55.5 parent: 12 - - uid: 29642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,72.5 - parent: 12 - uid: 30332 components: - type: Transform @@ -198839,6 +201768,12 @@ entities: parent: 12 - proto: Window entities: + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,60.5 + parent: 12 - uid: 291 components: - type: Transform @@ -199003,24 +201938,18 @@ entities: rot: 3.141592653589793 rad pos: -1.5,19.5 parent: 12 - - uid: 4472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 12 - - uid: 4473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 12 - uid: 4702 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-37.5 parent: 12 + - uid: 5302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 12 - uid: 7088 components: - type: Transform @@ -199087,6 +202016,11 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-35.5 parent: 12 + - uid: 9969 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 12 - uid: 10578 components: - type: Transform @@ -199099,6 +202033,11 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,14.5 parent: 12 + - uid: 10617 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 12 - uid: 10653 components: - type: Transform @@ -199139,12 +202078,6 @@ entities: - type: Transform pos: 48.5,17.5 parent: 12 - - uid: 11795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,60.5 - parent: 12 - uid: 11824 components: - type: Transform @@ -199226,12 +202159,6 @@ entities: - type: Transform pos: -24.5,-61.5 parent: 12 - - uid: 12332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,60.5 - parent: 12 - uid: 12524 components: - type: Transform @@ -199614,12 +202541,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-12.5 parent: 12 - - uid: 16797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-15.5 - parent: 12 - uid: 17108 components: - type: Transform @@ -199716,6 +202637,11 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-12.5 parent: 12 + - uid: 20782 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 12 - uid: 22292 components: - type: Transform @@ -199758,27 +202684,22 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-22.5 parent: 12 - - uid: 26242 - components: - - type: Transform - pos: -54.5,-15.5 - parent: 12 - uid: 27276 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-40.5 parent: 12 + - uid: 27401 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 12 - uid: 27415 components: - type: Transform pos: -45.5,-16.5 parent: 12 - - uid: 28181 - components: - - type: Transform - pos: -53.5,-15.5 - parent: 12 - uid: 29075 components: - type: Transform @@ -199925,11 +202846,28 @@ entities: rot: 3.141592653589793 rad pos: 53.5,54.5 parent: 12 - - uid: 28193 + - uid: 29115 + components: + - type: Transform + pos: -37.5,79.5 + parent: 12 + - uid: 29497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,78.5 + parent: 12 + - uid: 29498 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,-13.5 + pos: -37.5,77.5 + parent: 12 + - uid: 29499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,78.5 parent: 12 - uid: 30322 components: @@ -199953,30 +202891,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-49.5 parent: 12 - - uid: 30340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,54.5 - parent: 12 - - uid: 30341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,54.5 - parent: 12 - - uid: 30342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,54.5 - parent: 12 - - uid: 30343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,53.5 - parent: 12 - uid: 30346 components: - type: Transform @@ -200803,11 +203717,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,37.5 parent: 12 - - uid: 21935 - components: - - type: Transform - pos: -25.5,56.5 - parent: 12 - uid: 21965 components: - type: Transform @@ -200995,11 +203904,6 @@ entities: - type: Transform pos: 52.592125,-23.373646 parent: 12 - - uid: 9243 - components: - - type: Transform - pos: 43.56649,-37.601086 - parent: 12 - uid: 17621 components: - type: Transform @@ -201007,6 +203911,16 @@ entities: parent: 12 - proto: WoodDoor entities: + - uid: 6080 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 12 + - uid: 12071 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 12 - uid: 13312 components: - type: Transform @@ -201056,17 +203970,11 @@ entities: - 31202 - proto: Wrench entities: - - uid: 5916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.541794,-20.507181 - parent: 12 - uid: 5917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.52617,-19.538431 + rot: -43.98229715025713 rad + pos: 33.474327,-18.568962 parent: 12 - uid: 7197 components: @@ -201080,6 +203988,13 @@ entities: rot: -50.265482457436725 rad pos: 46.516457,-16.390417 parent: 12 + - uid: 9541 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 12655 components: - type: Transform @@ -201106,11 +204021,10 @@ entities: - type: Transform pos: -23.775642,-15.327034 parent: 12 - - uid: 29302 + - uid: 30137 components: - type: Transform - rot: -12.566370614359172 rad - pos: 9.636911,-13.368637 + pos: -42.562584,42.448437 parent: 12 - proto: Zipties entities: diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index b3d09487ad..b6ccea0986 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -50444,12 +50444,12 @@ entities: - uid: 30017 components: - type: Transform - pos: 97.5,49.5 + pos: 101.5,44.5 parent: 13329 - uid: 30018 components: - type: Transform - pos: 98.5,49.5 + pos: 101.5,45.5 parent: 13329 - uid: 30019 components: @@ -78864,6 +78864,13 @@ entities: - type: Transform pos: 62.3291,-2.5415568 parent: 13329 +- proto: CaptainIDCard + entities: + - uid: 35821 + components: + - type: Transform + pos: 81.9281,44.575443 + parent: 13329 - proto: CarbonDioxideCanister entities: - uid: 15424 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index f2109b05be..0028793798 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -174,7 +174,7 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAABHwAAAAAA + tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAABHwAAAAAA version: 6 1,1: ind: 1,1 @@ -27213,6 +27213,21 @@ entities: - type: Transform pos: 13.5,11.5 parent: 30 + - uid: 17777 + components: + - type: Transform + pos: -5.5,83.5 + parent: 30 + - uid: 17778 + components: + - type: Transform + pos: 4.5,83.5 + parent: 30 + - uid: 17779 + components: + - type: Transform + pos: -0.5,88.5 + parent: 30 - uid: 17811 components: - type: Transform @@ -52056,6 +52071,18 @@ entities: - type: Transform pos: -39.575058,56.668564 parent: 30 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 17784 + components: + - type: Transform + pos: -44.636612,58.69058 + parent: 30 + - uid: 17786 + components: + - type: Transform + pos: -44.478813,58.559113 + parent: 30 - proto: ClothingHeadHelmetTemplar entities: - uid: 16772 @@ -60264,6 +60291,11 @@ entities: - type: Transform pos: 32.5,39.5 parent: 30 + - uid: 17783 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 30 - uid: 19407 components: - type: Transform @@ -96877,6 +96909,24 @@ entities: parent: 30 - proto: IntercomAll entities: + - uid: 17780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,82.5 + parent: 30 + - uid: 17781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,82.5 + parent: 30 + - uid: 17782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,81.5 + parent: 30 - uid: 22231 components: - type: Transform @@ -118343,6 +118393,14 @@ entities: - SurveillanceCameraCommand nameSet: True id: Bridge Airlock + - uid: 16403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,88.5 + parent: 30 + - type: SurveillanceCamera + id: AI Core Core North - uid: 20280 components: - type: Transform @@ -118353,7 +118411,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: AI Core Core + id: AI Core Core South - uid: 20283 components: - type: Transform @@ -118750,16 +118808,13 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchor Room - - uid: 16403 + - uid: 17774 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-27.5 + pos: -10.5,-27.5 parent: 30 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True id: Telecomms - uid: 21211 components: diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index d2d35c7d92..5ad509170d 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -9,6 +9,7 @@ tilemap: 17: FloorBlueCircuit 21: FloorCarpetOffice 29: FloorDark + 1: FloorDarkDiagonal 34: FloorDarkMono 41: FloorEighties 44: FloorFreezer @@ -25,6 +26,7 @@ tilemap: 98: FloorSteelDirty 100: FloorSteelLime 101: FloorSteelMini + 2: FloorSteelMono 106: FloorTechMaint 107: FloorTechMaint2 110: FloorWhite @@ -45,31 +47,31 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAAAeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABHQAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAABWwAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAAAeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABHQAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAC version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAADewAAAAAAIgAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA version: 6 0,0: ind: 0,0 - tiles: WwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADewAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADeAAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADewAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAACeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAAAeAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAADeAAAAAAA + tiles: WwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABegAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADewAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADeAAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADewAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAACeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAAAeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAADeAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: ewAAAAAAewAAAAAAawAAAAAATQAAAAAATQAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAHQAAAAACHQAAAAAAawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAHQAAAAABHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAABWwAAAAACWwAAAAABewAAAAAAHQAAAAABHQAAAAADewAAAAAAWwAAAAADWwAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAB + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAHQAAAAACHQAAAAAAawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAHQAAAAABHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAABWwAAAAACWwAAAAABewAAAAAAHQAAAAABHQAAAAADewAAAAAAWwAAAAADWwAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA version: 6 0,1: ind: 0,1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAewAAAAAAewAAAAAA version: 6 1,0: ind: 1,0 @@ -81,27 +83,27 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: awAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACewAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADHQAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAADewAAAAAAWwAAAAAAWwAAAAACWwAAAAACHQAAAAACHQAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAAA + tiles: awAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAWwAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAWwAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADHQAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAADewAAAAAAWwAAAAAAWwAAAAACWwAAAAACHQAAAAACHQAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHQAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHQAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: egAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAHQAAAAACewAAAAAAHQAAAAADWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAHQAAAAADHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAABewAAAAAAHQAAAAACWwAAAAACewAAAAAAWwAAAAADWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAHQAAAAABewAAAAAAHQAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAACWwAAAAABWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAHQAAAAACewAAAAAAHQAAAAADWwAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAABewAAAAAAHQAAAAACWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAADWwAAAAADHQAAAAAAWwAAAAAAHQAAAAABewAAAAAAHQAAAAABWwAAAAABHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAACWwAAAAABWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAADTQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAA + tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAADTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: ewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAAHQAAAAABawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA + tiles: ewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAAHQAAAAABawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA version: 6 1,1: ind: 1,1 - tiles: eAAAAAAAewAAAAAAZQAAAAADewAAAAAAewAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAADHQAAAAACHQAAAAADHQAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAAAewAAAAAAeAAAAAABeAAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAAAHQAAAAACHQAAAAADewAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAACeAAAAAAAewAAAAAAeAAAAAAAeAAAAAABWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAABeAAAAAABeAAAAAACeAAAAAADeAAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: eAAAAAAAewAAAAAAZQAAAAADewAAAAAAewAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAACewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAADHQAAAAACHQAAAAADHQAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAAAewAAAAAAeAAAAAABeAAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAAAHQAAAAACHQAAAAADewAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAACeAAAAAAAewAAAAAAeAAAAAAAeAAAAAABWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAABeAAAAAABeAAAAAACeAAAAAADeAAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,0: ind: 2,0 @@ -109,19 +111,19 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: WwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADTQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAWwAAAAADOgAAAAAAWwAAAAAAWwAAAAACWwAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAWwAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWwAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAA + tiles: WwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAWwAAAAADOgAAAAAAWwAAAAAAWwAAAAACWwAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAWwAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWwAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -133,27 +135,27 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAADewAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABbgAAAAACewAAAAAA + tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAADewAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAACewAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: TQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADewAAAAAAeAAAAAAA + tiles: TQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADewAAAAAAeAAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,2: ind: 1,2 - tiles: ewAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAACewAAAAAAeAAAAAAAeAAAAAABWwAAAAACWwAAAAACWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAACeAAAAAABeAAAAAADewAAAAAAeAAAAAADeAAAAAACWwAAAAADWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAANgAAAAAANgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAAAHQAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACHQAAAAACHQAAAAACHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAAHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAABeAAAAAACewAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADewAAAAAAHQAAAAABeAAAAAACewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAHQAAAAADeAAAAAABAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAC + tiles: ewAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAACewAAAAAAeAAAAAAAeAAAAAABWwAAAAACWwAAAAACWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAACeAAAAAABeAAAAAADewAAAAAAeAAAAAADeAAAAAACWwAAAAADWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAANgAAAAAANgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAANgAAAAAANgAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACHQAAAAACHQAAAAACHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAAHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAABeAAAAAACewAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADewAAAAAAHQAAAAABeAAAAAACewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAHQAAAAADeAAAAAABAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAC version: 6 2,1: ind: 2,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADewAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAHQAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAHQAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADewAAAAAATQAAAAAAHQAAAAACHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAABewAAAAAATQAAAAAAHQAAAAAAHQAAAAADTQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAYgAAAAAAWwAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAATQAAAAAAHQAAAAABHQAAAAACTQAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAHQAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAHQAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADewAAAAAATQAAAAAAHQAAAAACHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAABewAAAAAATQAAAAAAHQAAAAAAHQAAAAADTQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAagAAAAAAewAAAAAA version: 6 2,2: ind: 2,2 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAWwAAAAABWwAAAAABYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAWwAAAAADYgAAAAAAWwAAAAABYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAYgAAAAAAWwAAAAABWwAAAAADYgAAAAAAUAAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAeAAAAAACeAAAAAADeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAACeAAAAAADeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,3: ind: 1,3 @@ -165,43 +167,43 @@ entities: version: 6 4,-1: ind: 4,-1 - tiles: ewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAbgAAAAABagAAAAAAewAAAAAA + tiles: ewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAbgAAAAABagAAAAAAewAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA version: 6 3,0: ind: 3,0 - tiles: bgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAbgAAAAABbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABewAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAADHQAAAAAAHQAAAAAAHQAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADewAAAAAAbgAAAAACWwAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABWwAAAAADewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADWwAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAD + tiles: bgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAABbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABewAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAADHQAAAAAAHQAAAAAAHQAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADewAAAAAAbgAAAAACWwAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABWwAAAAADewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADWwAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAD version: 6 4,0: ind: 4,0 - tiles: bgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABewAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACWwAAAAACbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACWwAAAAACbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAADEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABbgAAAAACbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAABbgAAAAACbgAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAADbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAACewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAANgAAAAAANgAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAANgAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAANgAAAAAANgAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATQAAAAAANgAAAAAANgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAANgAAAAAANgAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAANgAAAAAANgAAAAAAewAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAADEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABbgAAAAACbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAABbgAAAAACbgAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAADbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAACewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 3,3: ind: 3,3 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 4,1: ind: 4,1 - tiles: bgAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWwAAAAAAWwAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAbgAAAAACewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAABewAAAAAAewAAAAAAYgAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAbgAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAAA + tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAAA version: 6 4,3: ind: 4,3 @@ -209,7 +211,7 @@ entities: version: 6 5,-1: ind: 5,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAABewAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 @@ -217,7 +219,7 @@ entities: version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAATAAAAAABegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAHQAAAAAAewAAAAAAewAAAAAATQAAAAAANgAAAAAATQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAATAAAAAABegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 @@ -245,7 +247,7 @@ entities: version: 6 5,1: ind: 5,1 - tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAANgAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAEQAAAAAAewAAAAAAewAAAAAANgAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 3,-4: ind: 3,-4 @@ -253,31 +255,31 @@ entities: version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 6,1: + ind: 6,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,2: + ind: 6,2 + tiles: NgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -297,31 +299,42 @@ entities: version: 2 data: tiles: - -4,-4: - 0: 65520 - -4,-5: - 1: 63626 - -5,-4: - 0: 65520 - -4,-3: - 0: 136 + -4,-1: + 0: 65280 + -5,-1: + 0: 65280 + -4,0: + 0: 2191 + 1: 768 + -3,-1: + 0: 65280 + 1: 8 + -3,0: + 0: 558 + 1: 2048 -3,-4: - 0: 65520 + 1: 17472 -3,-5: - 1: 61442 + 0: 49152 + 1: 136 + -3,-3: + 1: 4 + 0: 3072 -2,-4: - 0: 30580 - -2,-5: - 1: 4096 - 0: 17472 + 0: 30582 -2,-3: - 0: 26214 + 0: 26471 + -3,-2: + 1: 34952 + -2,-1: + 0: 65382 + -2,-5: + 0: 30310 -2,-2: 0: 26222 - -2,-1: - 0: 61030 -2,0: - 0: 2190 + 0: 2191 + 1: 768 -1,-4: 1: 17 0: 28672 @@ -332,9 +345,10 @@ entities: -1,-1: 0: 65455 -1,-5: - 1: 28944 + 1: 30481 -1,0: 0: 558 + 1: 2048 0,-4: 0: 47935 0,-3: @@ -343,35 +357,33 @@ entities: 0: 48802 0,-1: 0: 65322 + -5,0: + 0: 15 + 1: 3840 -4,3: - 1: 61440 + 1: 32768 + -3,3: + 1: 768 -4,4: 1: 15 - -5,3: - 1: 57344 - -3,3: - 1: 61440 - -3,4: - 1: 15 -2,3: - 1: 61440 + 1: 17152 -2,4: 1: 15 -1,3: - 1: 61440 - -1,4: - 1: 15 + 1: 36352 0,0: 0: 34959 - 0,3: - 1: 61440 - 0: 136 - 0,4: + 1: 768 + -1,4: 1: 15 0,1: 0: 34952 0,2: 0: 34952 + 0,3: + 0: 136 + 1: 32768 1,0: 0: 30719 1,1: @@ -379,11 +391,13 @@ entities: 1,2: 0: 32759 1,3: - 0: 32887 + 0: 24695 + 0,4: + 1: 143 1,-1: 0: 65303 1,4: - 0: 43775 + 0: 60966 2,0: 0: 61695 2,1: @@ -395,7 +409,7 @@ entities: 2,-1: 0: 65467 2,4: - 0: 64443 + 0: 15247 3,0: 0: 45311 3,1: @@ -415,8 +429,8 @@ entities: 4,3: 0: 65021 0,-5: - 0: 45056 - 1: 70 + 0: 45859 + 1: 200 1,-4: 0: 65295 1,-3: @@ -454,30 +468,43 @@ entities: 0: 4 -5,-8: 1: 34944 - -5,-5: - 1: 61713 + -4,-7: + 1: 112 + 0: 29184 -4,-6: - 0: 57344 + 0: 242 + -5,-6: + 0: 240 -4,-9: 0: 17408 1: 35807 -3,-8: 0: 69 1: 61624 + -3,-7: + 1: 3840 -3,-6: - 0: 12288 + 0: 255 + 1: 32768 -3,-9: 0: 21760 1: 43759 -2,-8: 0: 21 1: 61674 + -2,-7: + 1: 768 + -2,-6: + 0: 20087 -2,-9: 0: 21760 1: 35471 -1,-8: 0: 34953 1: 12848 + -1,-6: + 0: 3840 + 1: 8 -1,-9: 0: 4360 1: 119 @@ -488,10 +515,9 @@ entities: 0: 65535 0,-7: 1: 30576 - -1,-6: - 1: 2184 0,-6: - 1: 17477 + 1: 34821 + 0: 13056 0,-9: 0: 57551 1,-8: @@ -525,37 +551,40 @@ entities: 0: 3855 4,-5: 0: 22288 + 0,6: + 0: 2056 1,6: - 0: 36751 - 1,7: - 0: 52232 + 0: 53199 1,5: - 0: 34944 + 1: 16 + 0: 52416 + 1,7: + 1: 16 + 0: 60428 1,8: - 0: 12 - 1: 8704 + 0: 15086 2,5: - 0: 65523 + 0: 65529 2,6: 0: 65535 2,7: - 0: 47935 + 0: 48063 2,8: - 0: 34947 + 0: 35763 3,5: - 0: 65534 + 0: 65535 3,6: 0: 46079 3,7: - 0: 48031 + 0: 48063 4,4: 0: 3845 4,5: - 0: 61423 + 0: 61183 4,6: 0: 65038 3,8: - 0: 49656 + 0: 57592 4,1: 0: 61152 5,0: @@ -699,8 +728,8 @@ entities: 0: 61047 1: 136 3,-10: - 1: 118 - 0: 45056 + 1: 50 + 0: 45192 3,-9: 0: 3067 3,-13: @@ -778,10 +807,12 @@ entities: 0: 8191 10,-5: 0: 12543 + 1: 32768 10,-9: 0: 65535 10,-4: 0: 61491 + 1: 136 11,-8: 0: 4369 1: 17476 @@ -792,10 +823,14 @@ entities: 0: 273 1: 3140 11,-5: - 0: 35071 + 0: 51455 + 1: 4096 11,-9: 0: 4369 1: 17484 + 11,-4: + 1: 17 + 0: 63692 12,-8: 3: 7 4: 1792 @@ -808,8 +843,6 @@ entities: 0: 49152 12,-5: 0: 43263 - 11,-4: - 0: 63624 8,-13: 0: 53519 1: 240 @@ -881,7 +914,7 @@ entities: 7,7: 0: 3822 7,8: - 0: 56591 + 0: 53703 8,4: 0: 65520 8,5: @@ -889,7 +922,7 @@ entities: 8,6: 0: 65535 8,7: - 0: 12159 + 0: 65407 9,0: 0: 20735 9,1: @@ -911,7 +944,7 @@ entities: 10,-1: 0: 65167 10,4: - 0: 61412 + 0: 61156 11,0: 0: 65327 11,1: @@ -945,7 +978,7 @@ entities: 11,-2: 0: 65535 12,-4: - 0: 65418 + 0: 32650 12,-2: 0: 61167 12,-1: @@ -1125,21 +1158,27 @@ entities: 1: 65280 16,-5: 0: 65295 + 0,8: + 1: 9728 + 0,9: + 1: 9826 + 0: 2176 + 0,10: + 1: 59938 1,9: - 1: 58094 + 0: 32754 1,10: - 1: 11810 - 1,11: - 1: 57890 + 0: 7 + 1: 63488 2,9: - 1: 65075 - 0: 136 + 1: 13298 + 0: 8 2,10: - 1: 3840 + 1: 15906 2,11: - 1: 61440 + 1: 58082 3,11: - 1: 61440 + 1: 61680 3,9: 0: 61166 3,10: @@ -1147,7 +1186,7 @@ entities: 4,9: 0: 57583 4,11: - 1: 12288 + 1: 12850 0: 2184 4,10: 0: 1262 @@ -1179,9 +1218,9 @@ entities: 0: 15 1: 61440 8,8: - 0: 21831 + 0: 21746 8,9: - 0: 14549 + 0: 14557 8,10: 0: 30591 8,11: @@ -1189,64 +1228,76 @@ entities: 9,4: 0: 65520 9,5: - 0: 57297 + 0: 57296 9,6: 0: 56733 9,7: - 0: 48909 + 0: 65293 10,5: - 0: 64270 + 0: 64302 10,6: - 0: 45979 + 0: 13211 10,7: - 0: 13067 - 1: 34816 - 9,8: - 0: 65528 + 0: 65283 10,8: - 0: 13107 - 1: 34952 + 0: 13105 + 1: 34944 11,5: 0: 48010 11,6: - 0: 59579 + 0: 63675 11,7: - 0: 26215 + 0: 30575 11,8: - 0: 26214 + 0: 61030 12,4: 0: 61408 12,5: 0: 57598 12,6: 0: 28910 + 12,7: + 1: 36608 + 0: 6 8,12: 0: 1 1: 12800 + 9,8: + 0: 35760 9,9: - 0: 36622 + 0: 36795 9,10: 0: 15291 9,11: 1: 57344 + 10,9: + 0: 3 + 1: 3720 10,10: 0: 36848 10,11: 1: 12561 0: 2184 - 10,9: - 0: 34 - 1: 136 10,12: 1: 50244 - 11,9: - 0: 30310 11,10: - 0: 4915 + 0: 4914 + 1: 34944 11,11: 0: 53009 + 1: 12 + 11,9: + 0: 26214 + 12,8: + 1: 15 + 0: 65392 + 12,9: + 1: 17648 + 12,10: + 1: 53188 12,11: 0: 13056 + 1: 2052 5,13: 1: 3298 6,13: @@ -1275,11 +1326,11 @@ entities: 16,0: 0: 65535 17,-3: - 0: 61422 + 0: 61322 17,-5: 0: 65263 17,-4: - 0: 36494 + 0: 60046 17,-2: 0: 61070 17,-1: @@ -1431,66 +1482,80 @@ entities: 0: 60447 13,6: 0: 239 - 1: 16384 + 1: 61440 13,7: - 0: 65520 + 1: 305 + 0: 49152 + 13,8: + 0: 65518 14,5: 0: 65487 14,6: - 0: 4607 - 1: 16384 + 0: 255 + 1: 61440 14,7: - 0: 65520 + 0: 28672 + 1: 128 + 14,8: + 0: 47935 15,5: 0: 64789 15,6: 0: 50431 + 1: 4096 15,7: - 0: 4380 + 1: 61201 + 0: 12 + 15,8: + 1: 25668 16,5: 0: 56783 16,6: 0: 56541 16,7: 0: 50381 + 1: 4352 13,12: - 0: 15 + 0: 34959 + 1: 768 + 13,11: + 0: 49152 + 1: 303 14,12: - 0: 4383 + 0: 8751 + 1: 2048 + 14,11: + 0: 28672 + 1: 143 15,12: 0: 15 + 1: 256 15,11: 0: 34816 - 12,8: - 0: 17476 - 12,9: - 0: 50244 - 13,8: - 0: 32752 - 13,9: - 0: 3183 - 12,10: - 0: 8 + 1: 773 13,10: - 0: 227 - 14,8: - 0: 57328 + 1: 12544 + 0: 206 + 13,9: + 0: 61166 14,9: - 0: 1998 + 0: 15295 14,10: - 0: 248 - 15,8: - 0: 21844 - 15,9: - 0: 25669 + 0: 127 + 1: 32768 15,10: - 0: 3 + 1: 8165 + 15,9: + 1: 17510 + 16,10: + 1: 272 + 0: 56524 16,11: - 0: 32652 + 0: 32669 16,8: 0: 52428 17,5: - 0: 63726 + 0: 47790 17,7: 0: 61167 17,6: @@ -1499,22 +1564,31 @@ entities: 17,8: 0: 3823 18,5: - 0: 4113 - 1: 1100 + 0: 30495 18,6: - 1: 8828 + 1: 57360 + 0: 3584 18,7: - 1: 8738 - 18,8: - 1: 8738 + 1: 57568 + 0: 3584 19,5: - 1: 4369 + 1: 3955 + 0: 61440 19,6: - 1: 15 + 1: 28679 + 0: 36744 + 19,7: + 1: 12336 + 0: 35712 + 20,5: + 1: 12544 + 20,6: + 0: 25123 + 1: 92 + 20,7: + 0: 30578 16,9: 0: 52428 - 16,10: - 0: 52428 17,9: 0: 61679 17,10: @@ -1524,14 +1598,20 @@ entities: 18,11: 0: 112 1: 2176 + 18,8: + 1: 57568 + 0: 3584 18,9: 1: 11810 18,10: 1: 14 18,12: 1: 61713 + 19,8: + 1: 12336 + 0: 2944 19,9: - 1: 3840 + 1: 3852 19,10: 1: 17487 0: 43680 @@ -1541,8 +1621,10 @@ entities: 19,12: 0: 170 1: 65092 + 20,8: + 0: 1906 20,9: - 1: 3840 + 1: 3855 20,11: 1: 19964 0: 40960 @@ -1583,25 +1665,41 @@ entities: 20,10: 0: 43690 1: 17476 + 21,8: + 0: 7 + 1: 24576 21,9: - 1: 3840 + 1: 3843 21,10: 1: 21831 0: 43680 21,11: 1: 18429 0: 40960 + 21,7: + 0: 30583 21,12: 0: 170 1: 64325 22,9: - 1: 30464 + 1: 30472 22,10: 1: 65126 22,11: 1: 39611 + 22,7: + 0: 65534 + 22,8: + 0: 24590 + 23,8: + 0: 255 22,12: 1: 14190 + 23,7: + 0: 7455 + 24,8: + 0: 17 + 1: 18440 13,-11: 1: 4096 13,-10: @@ -1672,76 +1770,98 @@ entities: 1: 50 29,-3: 1: 273 - -8,-5: - 1: 32768 - -8,-4: + 21,6: + 1: 99 + 22,6: + 0: 96 1: 8 - 0: 2048 - -7,-5: - 1: 64267 - 0: 1092 - -7,-4: - 1: 20507 - 0: 3908 - -7,-6: - 0: 16384 - -6,-5: - 1: 61697 - -6,-4: - 1: 4113 - 0: 52672 - -6,-6: - 0: 3072 - 1: 16384 - -5,-6: - 0: 1792 - 1: 20480 - -8,-3: - 1: 12040 - -9,-3: - 1: 44544 - -8,-2: - 1: 12066 - -9,-2: - 1: 44714 - -8,-1: - 1: 3874 - -9,-1: - 1: 3754 - -7,-1: - 0: 256 - -7,-3: - 0: 18 - -7,-2: + 23,6: + 0: 61440 + 24,6: 0: 4096 + 1: 2114 + 24,7: + 0: 4369 + 1: 8 + -7,-6: + 0: 63728 + -7,-5: + 1: 8736 + 0: 34952 + -7,-7: + 1: 32768 + -6,-7: + 1: 45056 + -6,-6: + 0: 13296 + 1: 32768 + -6,-5: + 0: 62259 + 1: 136 + -7,-4: + 0: 52424 + -6,-4: + 0: 30579 + -5,-7: + 1: 28672 + -5,-5: + 0: 4096 + -7,-1: + 0: 36744 + 1: 2 -7,0: - 0: 257 + 0: 15 + 1: 17408 + -7,-3: + 0: 34956 + 1: 8704 + -7,-2: + 1: 8738 + 0: 34952 + -6,-3: + 0: 16183 + -6,-2: + 0: 13107 + 1: 34952 + -6,-1: + 0: 65331 + 1: 8 + -6,0: + 0: 15 + 1: 22784 + -5,-4: + 1: 4368 -5,-3: - 0: 17 - -8,0: - 1: 35056 - -9,0: - 1: 43744 - -8,2: - 1: 36744 - -9,2: - 1: 44714 - -8,1: - 1: 35016 - -7,1: + 1: 1 0: 256 + -7,1: + 1: 17604 -7,2: - 0: 17 - -8,3: - 1: 2184 + 1: 19524 -7,3: - 0: 1 + 1: 3140 + -6,1: + 1: 21877 + -6,2: + 1: 22357 + -6,3: + 1: 17173 + -6,4: + 1: 12 + -5,3: + 1: 17152 -5,4: - 1: 3822 - -9,1: - 1: 43754 - -9,3: - 1: 170 + 1: 15 + -3,4: + 1: 15 + 25,6: + 1: 12832 + 25,7: + 1: 8994 + 25,8: + 1: 8754 + 24,9: + 1: 2 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1853,13 +1973,6 @@ entities: chunkCollection: version: 2 nodes: - - node: - angle: -4.71238898038469 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1028: -12,-14 - 1029: -19,-14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -1868,30 +1981,45 @@ entities: 1114: -5,0 1115: -3,0 1474: 24,23 - 2376: 58,-2 - 2377: 60,-2 + 3394: 11.968304,28.74898 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2727: -22,-17 + 2728: -22,-10 - node: color: '#FFFFFFFF' id: Arrows decals: 753: 21,-16 - 1026: -13,-12 - 1027: -20,-12 - 2624: 20,-46 - 2625: 22,-46 + 2729: -15,-2 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1584: 36,18 + 2725: -8,-10 + 2726: -8,-17 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 2626: 20,-58 - 2627: 22,-58 + 2645: -13,0 + 2646: -11,0 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 3122: -23.030256,-10.18695 + 3123: -23.030256,-17.187887 + 3124: -7.0305576,-17.187887 + 3125: -7.0305576,-10.187422 + 3854: 57.969326,-2.0004528 + 3855: 59.969025,-2.0004528 - node: color: '#FED83DFF' id: Bot @@ -1921,23 +2049,11 @@ entities: 1173: 15,-2 1174: 14,-2 1175: 13,-2 - 1222: 13,26 - 1223: 11,26 - 1224: 10,26 - 1225: 11,24 - 1226: 12,24 - 1227: 13,24 - 1228: 7,25 - 1323: 12,26 1466: 22,22 1467: 22,23 1468: 22,24 1469: 22,25 1470: 23,25 - 1581: 37,17 - 1582: 38,17 - 1583: 39,17 - 1795: 10,24 2085: 52,17 2086: 52,18 2199: 68,13 @@ -1954,6 +2070,27 @@ entities: 2577: 41,-43 2578: 38,-43 2579: 37,-43 + 2835: 38,24 + 2836: 41,24 + 2845: 38,21 + 3094: 96,30 + 3148: 26,-39 + 3167: 15,-39 + 3179: 11,31 + 3180: 12,31 + 3181: 13,31 + 3185: 9,26 + 3186: 10,26 + 3187: 11,26 + 3188: 12,26 + 3189: 12,24 + 3190: 11,24 + 3191: 10,24 + 3192: 9,24 + 3910: 16,-45 + 3911: 17,-45 + 3912: 25,-45 + 3913: 26,-45 - node: cleanable: True color: '#FFFFFFFF' @@ -1999,6 +2136,17 @@ entities: 2196: 68,16 2197: 67,16 2198: 66,16 + 3143: 25,-42 + 3144: 26,-42 + 3145: 26,-43 + 3146: 25,-43 + 3151: 14,-51 + 3152: 14,-52 + 3153: 14,-53 + 3154: 28,-51 + 3155: 28,-52 + 3156: 28,-53 + 3168: 16,-39 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -2032,20 +2180,27 @@ entities: color: '#FFFFFFFF' id: BoxGreyscale decals: - 759: 16,-43 - 760: 17,-43 - 761: 25,-43 - 762: 26,-43 1552: 14,40 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: BoxGreyscale + id: BrickTileDarkCornerNe decals: - 2638: 12,-50 - 2639: 12,-49 - 2640: 12,-48 - 2641: 12,-47 + 3076: 74,23 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 3075: 73,23 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 3078: 74,22 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 3077: 73,22 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -2054,6 +2209,11 @@ entities: 1782: 22,-12 1783: 22,-11 1784: 22,-10 + 2885: 56,39 + 2889: 56,40 + 2969: 56,36 + 2970: 56,37 + 2971: 56,38 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -2088,11 +2248,6 @@ entities: id: BrickTileWhiteCornerNe decals: 1447: 20,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 1574: 39,19 - node: color: '#EFCC4193' id: BrickTileWhiteCornerNe @@ -2109,11 +2264,6 @@ entities: id: BrickTileWhiteCornerNw decals: 1446: 17,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 1573: 36,19 - node: color: '#EFCC4193' id: BrickTileWhiteCornerNw @@ -2136,10 +2286,10 @@ entities: decals: 1451: 20,20 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1576: 39,17 + 3175: 17,-43 - node: color: '#EFCC4193' id: BrickTileWhiteCornerSe @@ -2162,10 +2312,10 @@ entities: decals: 1452: 17,20 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1575: 36,17 + 3165: 16,-43 - node: color: '#EFCC4193' id: BrickTileWhiteCornerSw @@ -2222,11 +2372,22 @@ entities: id: BrickTileWhiteInnerSw decals: 2083: 54,19 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSw + decals: + 3163: 16,-40 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: 1846: 17,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 2687: -23,-10 + 2688: -23,-17 - node: color: '#9FED583B' id: BrickTileWhiteLineE @@ -2256,17 +2417,19 @@ entities: 2076: 50,17 2077: 50,18 2090: 51,21 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 3172: 17,-39 + 3173: 17,-41 + 3174: 17,-42 + 3176: 26,-40 - node: color: '#EFCC4193' id: BrickTileWhiteLineE decals: 388: 13,-36 - - node: - color: '#EFCC4582' - id: BrickTileWhiteLineE - decals: - 472: 26,-42 - 473: 26,-41 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2277,9 +2440,8 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1118: -13,-12 - 1119: -20,-12 - 1944: 32,36 + 2741: 32,36 + 3117: -3,1 - node: color: '#9FED5847' id: BrickTileWhiteLineN @@ -2304,12 +2466,12 @@ entities: decals: 1458: 18,24 1459: 19,24 - 1946: 30,36 + 2739: 30,36 + 3121: -11,1 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1945: 31,36 2056: 52,14 2057: 51,14 2058: 50,14 @@ -2319,14 +2481,13 @@ entities: 2182: 66,15 2183: 67,15 2184: 68,15 + 2740: 31,36 + 3120: -13,1 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1116: -3,1 - 1117: -5,1 - 1577: 38,19 - 1578: 37,19 + 3118: -5,1 - node: color: '#EFCC4193' id: BrickTileWhiteLineN @@ -2355,7 +2516,11 @@ entities: decals: 1851: 16,-6 1852: 15,-6 - 1941: 32,35 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineS + decals: + 2736: 32,36 - node: color: '#9FED583B' id: BrickTileWhiteLineS @@ -2399,14 +2564,13 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1579: 38,17 - 1580: 37,17 - 1942: 31,35 + 2737: 31,36 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1943: 30,35 + 2738: 30,36 + 3162: 15,-40 - node: color: '#EFCC4193' id: BrickTileWhiteLineS @@ -2426,6 +2590,12 @@ entities: id: BrickTileWhiteLineW decals: 1850: 14,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 2689: -7,-17 + 2690: -7,-10 - node: color: '#9FED583B' id: BrickTileWhiteLineW @@ -2465,38 +2635,23 @@ entities: decals: 2081: 54,17 2082: 54,18 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 3161: 16,-41 - node: color: '#EFCC4193' id: BrickTileWhiteLineW decals: 395: 10,-36 396: 10,-35 - - node: - color: '#EFCC4582' - id: BrickTileWhiteLineW - decals: - 470: 25,-42 - 471: 25,-41 - 474: 16,-41 - 475: 16,-40 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: 2224: 78,-2 2225: 78,-1 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 1093: -6,-18 - 1364: 9,27 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Caution - decals: - 1363: 9,27 - node: color: '#52B4E996' id: CheckerNESW @@ -2610,16 +2765,6 @@ entities: decals: 2222: 77,-2 2223: 77,-1 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 1211: 13,30 - 1212: 13,31 - 1213: 12,31 - 1214: 12,30 - 1215: 11,30 - 1216: 11,31 - node: color: '#D381C996' id: CheckerNWSE @@ -2628,11 +2773,12 @@ entities: 2037: 58,10 2038: 58,11 - node: - color: '#EFCC4593' + color: '#EFB34196' id: CheckerNWSE decals: - 757: 18,-18 - 758: 18,-17 + 3921: 18,-19 + 3922: 18,-18 + 3923: 18,-17 - node: color: '#FFFFFF93' id: CheckerNWSE @@ -2674,9 +2820,6 @@ entities: 414: 46,-38 415: 39,-41 416: 41,-41 - 445: 16,-39 - 446: 17,-39 - 447: 25,-39 1004: 25,-3 1005: 26,-3 1006: 27,-3 @@ -2689,9 +2832,6 @@ entities: 1023: 27,16 1024: 33,-2 1025: 35,-2 - 1097: -8,-15 - 1098: -8,-14 - 1099: -8,-13 1120: 2,-2 1121: 2,-1 1122: 2,0 @@ -2699,8 +2839,6 @@ entities: 1180: 17,-1 1181: 17,0 1182: 17,1 - 1229: 7,24 - 1230: 7,26 1694: 40,12 1695: 41,12 1696: 42,12 @@ -2724,8 +2862,10 @@ entities: 2099: 58,21 2100: 59,21 2101: 60,21 - 2599: 26,-39 2614: 28,-6 + 3182: 11,30 + 3183: 12,30 + 3184: 13,30 - node: cleanable: True color: '#FFFFFFFF' @@ -2749,6 +2889,14 @@ entities: decals: 2064: 52,14 2065: 48,14 + - node: + color: '#334E6DC8' + id: DiagonalCheckerBOverlay + decals: + 3061: 73,22 + 3062: 73,23 + 3063: 74,23 + 3064: 74,22 - node: cleanable: True color: '#FFFFFFFF' @@ -2789,35 +2937,7 @@ entities: 1152: -4,-5 1153: -4,-4 1154: -4,-5 - 1234: 6,30 - 1235: 7,31 - 1236: 6,32 - 1237: 9,30 - 1238: 9,29 - 1346: 15,20 - 1347: 14,20 - 1348: 13,23 - 1349: 12,23 - 1350: 11,23 - 1351: 7,22 - 1352: 7,21 - 1353: 10,25 - 1354: 9,27 - 1355: 7,28 - 1356: 13,28 - 1357: 11,28 - 1358: 15,24 - 1359: 12,24 - 1360: 7,24 1361: 5,24 - 1362: 7,23 - 1371: 8,17 - 1372: 7,16 - 1373: 5,16 - 1374: 8,18 - 1439: 11,24 - 1440: 10,26 - 1441: 7,25 1481: 17,21 1482: 18,22 1483: 18,23 @@ -2830,17 +2950,6 @@ entities: 1524: 23,22 1525: 23,23 1526: 23,21 - 1527: 15,23 - 1528: 14,23 - 1529: 13,24 - 1553: 39,30 - 1554: 40,31 - 1555: 39,33 - 1556: 38,33 - 1557: 37,35 - 1558: 39,35 - 1559: 41,33 - 1560: 40,33 1623: 32,17 1624: 32,18 1625: 33,17 @@ -2849,8 +2958,6 @@ entities: 1628: 33,23 1629: 34,24 1630: 33,27 - 1631: 32,29 - 1632: 32,30 1633: 30,23 1634: 30,18 1635: 29,17 @@ -2867,14 +2974,6 @@ entities: 1661: 27,23 1662: 25,25 1663: 27,26 - 1799: 8,21 - 1800: 9,21 - 1801: 9,22 - 1802: 9,23 - 1803: 10,23 - 1804: 10,22 - 1805: 8,24 - 1806: 9,24 2256: 55,-16 2257: 55,-16 2258: 56,-16 @@ -2886,6 +2985,65 @@ entities: 2306: 33,-17 2307: 31,-16 2308: 29,-17 + 3031: 36,31 + 3128: 56,35 + 3129: 57,40 + 3288: 12,28 + 3289: 11,27 + 3290: 13,27 + 3297: 8,20 + 3298: 6,22 + 3299: 6,24 + 3300: 7,23 + 3301: 7,27 + 3302: 10,24 + 3303: 10,26 + 3304: 12,26 + 3305: 12,22 + 3306: 11,23 + 3307: 14,20 + 3308: 15,23 + 3309: 14,22 + 3310: 13,24 + 3311: 12,25 + 3312: 9,22 + 3313: 8,27 + 3315: 10,25 + 3316: 9,23 + 3317: 8,24 + 3318: 6,26 + 3319: 12,23 + 3320: 10,22 + 3325: 11,20 + 3328: 12,24 + 3438: 7,31 + 3439: 7,30 + 3440: 9,32 + 3441: 8,32 + 3442: 7,32 + 3443: 5,32 + 3444: 5,31 + 3445: 9,34 + 3446: 8,34 + 3447: 9,29 + 3448: 5,35 + 3455: 7,28 + 3456: 6,27 + 3538: 6,33 + 3539: 8,33 + 3601: 4,37 + 3602: 6,38 + 3603: 4,39 + 3604: 5,40 + 3907: 29,-27 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2895: 41,34 + 2901: 39,34 + 2906: 46,27 + 2922: 49,33 - node: cleanable: True color: '#FFFFFFFF' @@ -2904,17 +3062,150 @@ entities: 484: 31,-36 618: 18,-31 619: 19,-29 - 1239: 8,29 - 1240: 8,31 - 1324: 12,22 - 1325: 8,20 - 1375: 7,17 - 1376: 8,16 - 1377: 9,19 1485: 18,21 1507: 23,23 - 1561: 39,32 2260: 55,-15 + 2995: 54,32 + 2996: 53,37 + 2997: 58,36 + 3009: 58,32 + 3029: 38,22 + 3041: 54,47 + 3132: 58,31 + 3251: 7,22 + 3252: 6,25 + 3253: 8,26 + 3254: 11,28 + 3256: 13,30 + 3257: 14,23 + 3258: 15,21 + 3259: 10,23 + 3260: 13,21 + 3261: 11,25 + 3262: 7,24 + 3263: 13,26 + 3264: 11,21 + 3265: 16,20 + 3330: 11,29 + 3418: 8,29 + 3419: 6,28 + 3433: 9,29 + 3526: 7,34 + 3540: 7,33 + 3605: 5,37 + 3606: 6,39 + 3607: 4,40 + 3613: 5,35 + 3615: 7,37 + 3616: 7,38 + 3654: 6,38 + 3856: 72,-1 + 3857: 73,-3 + 3858: 70,-5 + 3859: 72,-6 + 3860: 70,-3 + 3861: 69,-4 + 3862: 75,-2 + 3863: 72,-1 + 3864: 72,-4 + 3892: 29,-29 + 3898: 4,38 + 3909: 30,-27 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3010: 59,32 + 3011: 59,40 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3007: 59,34 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3008: 59,38 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2894: 39,33 + 2904: 40,35 + 2932: 37,19 + 2933: 38,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3000: 55,34 + 3024: 37,31 + 3025: 40,30 + 3033: 59,36 + 3039: 50,34 + 3044: 58,47 + 3131: 58,31 + 3268: 7,26 + 3269: 13,25 + 3271: 9,21 + 3272: 14,21 + 3273: 6,23 + 3274: 6,26 + 3275: 9,25 + 3276: 13,28 + 3277: 12,29 + 3278: 8,21 + 3321: 9,26 + 3322: 9,24 + 3323: 15,22 + 3324: 12,20 + 3421: 8,28 + 3435: 6,31 + 3437: 8,30 + 3457: 6,23 + 3608: 4,38 + 3609: 6,37 + 3865: 70,-2 + 3866: 70,-4 + 3867: 71,-6 + 3868: 70,-6 + 3869: 74,-3 + 3870: 72,-3 + 3891: 29,-28 + 3897: 30,-28 + 3899: 6,37 + 3900: 5,39 + 3904: 6,32 + 3905: 8,30 + 3908: 29,-27 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3001: 54,35 + 3002: 56,38 + 3003: 54,39 + 3592: 4,40 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 2896: 39,35 + 2897: 41,36 + 2900: 41,33 + 2902: 39,36 + 2903: 40,34 + 2908: 49,35 - node: cleanable: True color: '#FFFFFFFF' @@ -2974,39 +3265,6 @@ entities: 641: 15,-37 642: 16,-37 643: 15,-34 - 1245: 9,31 - 1246: 7,32 - 1247: 9,32 - 1248: 6,31 - 1249: 8,29 - 1250: 9,28 - 1251: 10,27 - 1252: 10,28 - 1332: 13,25 - 1333: 11,25 - 1334: 12,27 - 1335: 11,26 - 1336: 12,22 - 1337: 13,23 - 1338: 14,24 - 1339: 15,23 - 1340: 15,22 - 1341: 15,21 - 1342: 14,22 - 1343: 15,21 - 1344: 15,20 - 1345: 14,21 - 1380: 7,16 - 1381: 9,17 - 1382: 9,16 - 1383: 9,15 - 1384: 7,15 - 1385: 9,18 - 1386: 7,19 - 1387: 7,19 - 1388: 8,18 - 1389: 9,17 - 1390: 9,16 1492: 18,24 1493: 17,23 1494: 19,23 @@ -3016,8 +3274,6 @@ entities: 1498: 17,20 1499: 17,21 1500: 18,20 - 1501: 16,20 - 1502: 16,22 1503: 20,20 1504: 21,21 1505: 22,20 @@ -3032,13 +3288,6 @@ entities: 1516: 23,23 1517: 23,22 1518: 22,25 - 1566: 38,35 - 1567: 36,35 - 1568: 38,36 - 1569: 37,34 - 1570: 40,32 - 1571: 40,31 - 1572: 40,30 1638: 30,17 1639: 30,21 1640: 33,18 @@ -3050,9 +3299,7 @@ entities: 1646: 29,23 1647: 35,28 1648: 34,27 - 1649: 33,30 1650: 33,29 - 1651: 37,30 1652: 36,22 1664: 25,21 1665: 26,22 @@ -3067,11 +3314,6 @@ entities: 1792: 25,33 1793: 26,34 1794: 27,34 - 1807: 9,21 - 1808: 10,22 - 1809: 7,21 - 1810: 8,22 - 1811: 8,24 2263: 55,-15 2264: 55,-14 2265: 54,-14 @@ -3079,6 +3321,76 @@ entities: 2267: 57,-16 2268: 57,-15 2269: 57,-14 + 2935: 39,18 + 2982: 54,34 + 2983: 55,37 + 2984: 55,40 + 2985: 53,40 + 2986: 57,37 + 2987: 56,33 + 2988: 54,33 + 2989: 58,36 + 2990: 58,40 + 2991: 55,41 + 2992: 54,40 + 2993: 53,34 + 2994: 53,33 + 2999: 55,35 + 3012: 55,38 + 3013: 46,33 + 3015: 36,30 + 3016: 39,31 + 3017: 41,30 + 3018: 43,31 + 3027: 40,27 + 3028: 40,22 + 3030: 39,24 + 3040: 51,35 + 3042: 57,47 + 3133: 55,39 + 3279: 7,25 + 3280: 8,23 + 3281: 12,21 + 3282: 14,24 + 3283: 10,27 + 3284: 10,28 + 3286: 15,20 + 3287: 12,27 + 3326: 13,22 + 3327: 11,24 + 3329: 9,27 + 3420: 7,28 + 3429: 7,34 + 3432: 9,30 + 3611: 5,39 + 3612: 4,38 + 3614: 4,35 + 3883: 72,-5 + 3884: 71,-3 + 3885: 71,-1 + 3886: 74,-1 + 3887: 74,-3 + 3896: 30,-25 + 3901: 4,37 + 3902: 4,37 + 3903: 5,33 + 3906: 8,32 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 3004: 57,39 + 3006: 55,32 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2891: 33,30 + 2898: 40,33 + 2899: 39,35 + 2918: 58,40 - node: cleanable: True color: '#FFFFFFFF' @@ -3100,18 +3412,6 @@ entities: 615: 14,-26 616: 13,-25 617: 25,-29 - 1241: 8,30 - 1242: 7,30 - 1243: 7,31 - 1244: 8,32 - 1326: 13,22 - 1327: 13,21 - 1328: 11,22 - 1329: 8,26 - 1330: 12,25 - 1331: 11,27 - 1378: 7,18 - 1379: 8,19 1486: 18,20 1487: 19,21 1488: 19,22 @@ -3119,12 +3419,68 @@ entities: 1490: 19,23 1491: 17,24 1506: 23,21 - 1562: 39,30 - 1563: 37,33 - 1564: 37,34 - 1565: 39,34 2261: 56,-14 2262: 55,-16 + 2936: 37,18 + 2975: 53,32 + 2976: 56,34 + 2977: 54,37 + 2978: 58,40 + 2979: 56,32 + 2981: 55,31 + 3019: 37,30 + 3023: 42,31 + 3026: 39,26 + 3043: 56,47 + 3291: 8,25 + 3292: 8,22 + 3293: 7,21 + 3294: 10,21 + 3295: 13,23 + 3331: 13,29 + 3422: 9,28 + 3423: 6,32 + 3424: 5,33 + 3426: 7,34 + 3427: 8,31 + 3428: 6,30 + 3458: 6,21 + 3541: 9,33 + 3610: 5,38 + 3871: 71,-3 + 3872: 71,-4 + 3873: 69,-5 + 3874: 69,-3 + 3875: 74,-2 + 3876: 73,-1 + 3877: 75,-1 + 3878: 72,-2 + 3879: 73,-4 + 3880: 71,-6 + 3882: 74,-4 + 3894: 30,-24 + 3895: 30,-29 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3020: 39,30 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3021: 43,30 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3022: 38,31 - node: color: '#FFFFFFFF' id: FlowersBRThree @@ -3161,6 +3517,16 @@ entities: 1531: 24,17 1532: 24,18 1533: 24,18 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 3756: 68,3 + 3757: 68,4 + 3758: 68,5 + 3759: 68,6 + 3763: 53,-2 + 3764: 53,0 - node: color: '#9FED581F' id: FullTileOverlayGreyscale @@ -3180,26 +3546,14 @@ entities: 842: 43,-11 843: 44,-11 844: 44,-10 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 2299: 53,-2 - 2300: 53,0 - 2337: 68,5 - 2338: 68,6 - 2400: 68,4 - 2401: 68,3 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 1232: 8,29 - 1233: 9,29 - 1442: 16,20 - 1443: 16,22 1444: 21,20 1445: 21,21 + 3266: 16,21 + 3267: 16,20 - node: color: '#D4D4D40C' id: FullTileOverlayGreyscale @@ -3218,7 +3572,6 @@ entities: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 35: 36,20 46: 36,28 47: 36,27 48: 36,26 @@ -3327,6 +3680,14 @@ entities: 2451: 73,8 2452: 71,8 2453: 72,8 + 3655: 48,0 + 3656: 49,0 + 3657: 50,0 + 3658: 51,0 + 3690: 54,3 + 3691: 55,3 + 3692: 57,3 + 3839: 68,2 - node: color: '#9FED5847' id: HalfTileOverlayGreyscale @@ -3339,47 +3700,15 @@ entities: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 1759: 48,0 - 1760: 49,0 - 1761: 50,0 - 1762: 51,0 2204: 78,-4 2205: 79,-4 2206: 81,-4 - 2313: 77,5 - 2318: 79,2 - 2319: 80,2 - 2320: 81,2 - 2331: 75,2 - 2332: 74,2 - 2333: 73,2 - 2334: 72,2 - 2335: 70,2 - 2336: 69,2 - 2402: 68,2 - 2404: 57,3 - 2405: 55,3 - 2406: 54,3 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 187: 7,19 - 188: 9,19 - 1195: 10,28 - 1196: 9,28 - 1197: 8,28 - 1204: 14,25 - 1208: 11,28 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale - decals: - 118: 53,-4 - 120: 52,-4 - 125: 49,-5 - 126: 50,-5 - 127: 51,-5 + 3210: 14,25 + 3214: 10,28 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -3414,16 +3743,21 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 60: 33,30 73: 32,24 74: 31,24 75: 30,24 76: 29,24 77: 28,24 - 94: 36,31 - 95: 37,31 178: 36,24 1149: -2,-4 + 2744: 33,31 + 2808: 34,31 + 2823: 36,19 + 2824: 37,19 + 2825: 38,19 + 2826: 39,19 + 2939: 36,31 + 2940: 43,31 - node: color: '#EFB34128' id: HalfTileOverlayGreyscale @@ -3462,8 +3796,11 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale decals: - 2602: 49,-11 - 2603: 50,-11 + 3667: 52,-4 + 3673: 49,-11 + 3674: 50,-11 + 3677: 50,-5 + 3678: 51,-5 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -3479,6 +3816,13 @@ entities: 2437: 71,4 2446: 73,4 2447: 72,4 + 3687: 53,2 + 3710: 63,0 + 3711: 64,0 + 3712: 66,0 + 3713: 67,0 + 3714: 68,0 + 3722: 60,-8 - node: color: '#9FED5834' id: HalfTileOverlayGreyscale180 @@ -3502,40 +3846,15 @@ entities: 2212: 81,-8 2213: 80,-8 2214: 79,-8 - 2303: 53,2 - 2321: 81,1 - 2322: 80,1 - 2323: 79,1 - 2324: 78,1 - 2325: 76,1 - 2326: 75,1 - 2327: 74,1 - 2328: 73,1 - 2329: 70,1 - 2330: 71,1 - 2343: 68,0 - 2344: 67,0 - 2345: 66,0 - 2346: 64,0 - 2347: 63,0 - 2359: 60,-8 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 183: 8,15 - 184: 7,15 - 192: 9,15 - 1205: 12,21 - 1206: 11,21 - 1207: 10,21 - 1797: 9,21 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale180 - decals: - 116: 50,-3 - 117: 49,-3 + 3197: 7,21 + 3198: 9,21 + 3199: 10,21 + 3202: 12,20 + 3203: 13,20 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -3561,9 +3880,13 @@ entities: 81: 31,23 90: 33,17 91: 34,17 - 96: 36,30 - 99: 37,30 1150: -2,-6 + 2819: 36,17 + 2820: 37,17 + 2821: 38,17 + 2822: 39,17 + 2937: 36,30 + 2938: 43,30 - node: color: '#EFCC4193' id: HalfTileOverlayGreyscale180 @@ -3589,6 +3912,12 @@ entities: 460: 20,-44 461: 21,-44 462: 22,-44 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale180 + decals: + 3675: 49,-3 + 3676: 50,-3 - node: color: '#34A2C0B2' id: HalfTileOverlayGreyscale270 @@ -3602,53 +3931,34 @@ entities: decals: 102: 49,3 103: 49,2 - 2391: 55,-6 - 2396: 55,-4 2439: 70,5 2440: 70,6 2441: 70,7 + 3679: 54,-2 + 3680: 54,-1 + 3681: 54,0 + 3682: 54,1 + 3683: 52,3 + 3694: 59,3 + 3695: 59,4 + 3696: 65,3 + 3697: 65,4 + 3698: 62,3 + 3699: 62,4 + 3719: 59,-4 + 3720: 59,-5 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: 2203: 76,-5 2217: 78,-7 - 2295: 52,3 - 2296: 54,-2 - 2297: 54,-1 - 2298: 54,0 - 2301: 54,1 - 2311: 76,3 - 2312: 76,4 - 2357: 59,-5 - 2358: 59,-4 - 2419: 65,3 - 2420: 65,4 - 2421: 62,3 - 2422: 62,4 - 2423: 59,3 - 2424: 59,4 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 185: 7,16 - 186: 7,17 - 197: 7,18 - 1183: 7,22 - 1184: 7,23 - 1185: 7,24 - 1186: 7,25 - 1187: 7,26 - 1188: 7,27 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale270 - decals: - 128: 49,-9 - 129: 49,-8 - 130: 49,-7 - 131: 49,-6 + 3219: 6,22 + 3220: 6,25 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3667,8 +3977,6 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 62: 32,30 - 63: 32,29 65: 32,28 67: 33,27 68: 33,26 @@ -3680,6 +3988,16 @@ entities: 87: 32,18 88: 32,17 1148: -3,-5 + 2745: 32,30 + 2815: 32,29 + 2816: 29,28 + 2817: 29,29 + 2818: 29,30 + 2829: 35,23 + 2830: 35,22 + 2840: 38,23 + 2841: 38,22 + 2842: 38,21 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -3704,6 +4022,18 @@ entities: id: HalfTileOverlayGreyscale270 decals: 459: 19,-43 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale270 + decals: + 3669: 49,-6 + 3670: 49,-7 + 3671: 49,-8 + 3672: 49,-9 + 3775: 55,-6 + 3784: 55,-8 + 3824: 55,-5 + 3825: 55,-4 - node: color: '#34A2C0B2' id: HalfTileOverlayGreyscale90 @@ -3727,6 +4057,22 @@ entities: 2395: 57,-4 2448: 74,5 2449: 74,6 + 3660: 52,-1 + 3661: 52,-2 + 3700: 61,4 + 3701: 61,3 + 3702: 64,4 + 3703: 64,3 + 3704: 62,-7 + 3705: 62,-5 + 3706: 62,-4 + 3707: 62,-3 + 3708: 62,-2 + 3709: 62,-1 + 3754: 67,3 + 3755: 67,4 + 3785: 57,-8 + 3786: 69,1 - node: color: '#5A5A5AFF' id: HalfTileOverlayGreyscale90 @@ -3737,46 +4083,19 @@ entities: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 1764: 52,-1 - 1765: 52,-2 2208: 82,-6 2209: 82,-5 2210: 82,-7 - 2309: 78,3 - 2310: 78,4 - 2348: 62,-1 - 2349: 62,-2 - 2350: 62,-3 - 2351: 62,-4 - 2352: 62,-5 - 2353: 62,-7 - 2413: 67,3 - 2414: 67,4 - 2415: 64,3 - 2416: 64,4 - 2417: 61,3 - 2418: 61,4 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 189: 9,18 - 190: 9,17 - 191: 9,16 - 1198: 13,27 - 1199: 13,26 - 1200: 15,24 - 1201: 15,23 - 1202: 15,22 - 1203: 15,21 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale90 - decals: - 121: 53,-5 - 122: 53,-6 - 123: 53,-7 - 124: 53,-8 + 3205: 15,21 + 3206: 15,22 + 3207: 15,23 + 3208: 15,24 + 3212: 13,26 + 3213: 13,27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -3802,7 +4121,6 @@ entities: 52: 35,27 53: 35,28 56: 34,29 - 57: 34,30 179: 36,23 1147: -1,-5 1600: 27,17 @@ -3812,10 +4130,14 @@ entities: 1604: 27,21 1605: 27,26 1606: 27,27 - 1607: 27,28 - 1608: 27,29 1609: 27,30 1610: 27,31 + 2813: 27,29 + 2814: 27,28 + 2827: 33,23 + 2828: 33,22 + 2843: 41,23 + 2844: 41,22 - node: color: '#EFCC4193' id: HalfTileOverlayGreyscale90 @@ -3836,22 +4158,21 @@ entities: 457: 23,-42 458: 23,-41 - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea + color: '#FA750096' + id: HalfTileOverlayGreyscale90 decals: - 1598: 39,24 - 1599: 40,24 + 3662: 53,-8 + 3664: 53,-6 + 3665: 53,-5 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1231: 9,26 1473: 23,25 1621: 31,18 1622: 31,20 - 2294: 52,0 + 3235: 8,26 - node: color: '#FFFFFFFF' id: LoadingArea @@ -3866,19 +4187,21 @@ entities: 1176: 13,-2 1177: 14,-2 1178: 15,-2 - 1796: 9,24 - 2293: 52,-2 + 3096: 82,30 + 3236: 8,24 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 2838: 39,24 + 2839: 40,24 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: 70: 32,25 - - node: - color: '#FFFFFFFF' - id: North - decals: - 1155: -17,-14 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -3906,6 +4229,25 @@ entities: 2508: 104,-18 2509: 108,-18 2510: 108,-16 + 2707: -7,-4 + 2708: -7,-5 + 2709: -7,-6 + 2710: -7,-7 + 2711: -7,-8 + 2712: -7,-9 + 2713: -7,-11 + 2714: -7,-12 + 2715: -8,-12 + 2716: -8,-13 + 2717: -8,-14 + 2718: -8,-15 + 2719: -7,-16 + 2720: -7,-18 + 2721: -7,-19 + 2722: -7,-20 + 3837: 62,2 + 3838: 65,2 + 3840: 59,2 - node: color: '#797C8250' id: QuarterTileOverlayGreyscale @@ -3929,32 +4271,16 @@ entities: 2548: 103,-16 2549: 102,-20 - node: - color: '#9FED5896' + color: '#8D1C9996' id: QuarterTileOverlayGreyscale decals: - 2317: 76,2 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 193: 7,15 + 3401: 6,28 + 3402: 7,28 + 3403: 9,28 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1064: -22,-13 - 1065: -21,-13 - 1066: -19,-13 - 1067: -18,-13 - 1068: -17,-13 - 1069: -16,-13 - 1070: -15,-13 - 1071: -14,-13 - 1072: -12,-13 - 1073: -11,-13 - 1074: -10,-13 - 1075: -9,-13 - 1076: -8,-13 1077: -7,-13 1078: -7,-12 1079: -7,-11 @@ -4022,6 +4348,11 @@ entities: 2024: 40,5 2025: 40,4 2026: 40,3 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 2684: -22,-12 - node: color: '#D5188DFF' id: QuarterTileOverlayGreyscale @@ -4035,10 +4366,7 @@ entities: id: QuarterTileOverlayGreyscale decals: 54: 35,28 - 58: 34,30 - 61: 32,30 72: 33,24 - 100: 36,30 739: 24,-25 740: 24,-24 955: 27,5 @@ -4072,8 +4400,19 @@ entities: 1111: 0,0 1112: 1,0 1113: 2,0 - 1589: 38,24 - 1590: 38,23 + 2768: 48,35 + 2769: 49,35 + 2770: 50,35 + 2771: 51,35 + 2780: 39,36 + 2781: 40,36 + 2788: 41,36 + 2941: 37,31 + 2942: 38,31 + 2943: 39,31 + 2944: 40,31 + 2945: 41,31 + 2946: 42,31 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -4112,6 +4451,9 @@ entities: 741: 28,-25 742: 28,-24 2454: 74,7 + 2723: -8,-15 + 2730: -7,-20 + 3723: 62,0 - node: color: '#797979AB' id: QuarterTileOverlayGreyscale180 @@ -4168,6 +4510,16 @@ entities: decals: 2550: 108,-20 2551: 103,-21 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 + decals: + 3398: 6,30 + 3399: 7,30 + 3400: 9,30 + 3412: 9,31 + 3413: 9,32 + 3535: 9,33 - node: color: '#951710FF' id: QuarterTileOverlayGreyscale180 @@ -4182,21 +4534,9 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 2341: 69,1 - 2355: 62,0 2479: 105,-17 2480: 106,-18 2481: 103,-19 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 196: 9,19 - - node: - color: '#D0B78BFF' - id: QuarterTileOverlayGreyscale180 - decals: - 119: 53,-4 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 @@ -4264,23 +4604,25 @@ entities: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 1030: -22,-15 - 1031: -21,-15 - 1032: -20,-15 - 1033: -19,-15 - 1034: -18,-15 - 1035: -17,-15 - 1036: -16,-15 - 1037: -15,-15 - 1038: -14,-15 - 1039: -13,-15 - 1040: -12,-15 - 1041: -11,-15 - 1042: -10,-15 - 1043: -9,-15 - 1044: -8,-15 - 1045: -7,-15 - 1046: -6,-15 + 2665: -23,-21 + 2666: -23,-20 + 2667: -23,-19 + 2668: -23,-18 + 2669: -23,-16 + 2670: -22,-15 + 2671: -22,-14 + 2672: -22,-13 + 2673: -22,-12 + 2674: -23,-11 + 2675: -23,-9 + 2676: -23,-8 + 2677: -23,-7 + 2678: -23,-6 + 2679: -23,-5 + 2680: -23,-4 + 2681: -23,-3 + 2682: -23,-22 + 2683: -23,-15 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -4288,7 +4630,6 @@ entities: 40: 35,21 66: 32,28 89: 32,17 - 97: 37,31 180: 36,24 2471: 105,-19 2472: 104,-18 @@ -4298,6 +4639,20 @@ entities: 2476: 103,-17 2477: 102,-18 2478: 103,-20 + 2764: 48,34 + 2765: 49,34 + 2766: 50,34 + 2767: 51,34 + 2778: 40,33 + 2779: 41,33 + 2787: 39,33 + 2807: 34,30 + 2947: 37,30 + 2948: 38,30 + 2949: 39,30 + 2950: 40,30 + 2951: 41,30 + 2952: 42,30 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -4335,6 +4690,19 @@ entities: 750: 22,-18 751: 22,-17 752: 22,-16 + - node: + color: '#FA750096' + id: QuarterTileOverlayGreyscale180 + decals: + 2955: 57,40 + 2956: 57,39 + 2957: 57,38 + 2958: 57,37 + 2959: 57,36 + 2960: 57,35 + 2965: 57,32 + 2967: 57,34 + 2968: 57,33 - node: color: '#FED83DFF' id: QuarterTileOverlayGreyscale180 @@ -4349,6 +4717,18 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 1914: 8,-2 + 3065: 69,20 + 3066: 70,20 + 3067: 71,20 + 3068: 72,20 + 3072: 71,21 + 3073: 71,22 + 3074: 71,23 + 3081: 79,29 + 3082: 79,30 + 3083: 79,31 + 3089: 80,29 + 3090: 81,29 - node: color: '#3C44AAFF' id: QuarterTileOverlayGreyscale270 @@ -4361,23 +4741,8 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1047: -22,-15 - 1048: -21,-15 - 1049: -20,-15 - 1050: -19,-15 - 1051: -18,-15 - 1052: -17,-15 - 1053: -16,-15 - 1054: -15,-15 - 1055: -14,-15 - 1056: -13,-15 - 1057: -12,-15 - 1058: -11,-15 - 1059: -10,-15 - 1060: -9,-15 - 1061: -8,-15 - 1062: -7,-15 - 1063: -6,-15 + 2685: -22,-15 + 3688: 54,2 - node: color: '#797C8250' id: QuarterTileOverlayGreyscale270 @@ -4425,7 +4790,6 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 2216: 78,-6 - 2302: 54,2 2482: 106,-19 2483: 105,-18 2484: 103,-16 @@ -4435,8 +4799,11 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 195: 7,19 - 1209: 13,21 + 3200: 11,21 + 3395: 6,30 + 3396: 7,30 + 3397: 9,30 + 3407: 6,28 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 @@ -4532,6 +4899,22 @@ entities: decals: 735: 24,-25 736: 24,-24 + 2691: -7,-20 + 2692: -7,-19 + 2693: -7,-18 + 2694: -7,-16 + 2695: -7,-15 + 2696: -8,-15 + 2697: -8,-14 + 2698: -8,-13 + 2699: -8,-12 + 2700: -7,-11 + 2701: -7,-9 + 2702: -7,-8 + 2703: -7,-7 + 2704: -7,-6 + 2705: -7,-5 + 2706: -7,-4 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4540,7 +4923,7 @@ entities: 43: 35,17 69: 33,28 82: 32,23 - 101: 36,31 + 2831: 34,23 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale270 @@ -4587,6 +4970,11 @@ entities: 222: 26,40 223: 26,41 224: 26,42 + 3079: 69,22 + 3080: 69,23 + 3084: 79,31 + 3085: 80,31 + 3086: 81,31 - node: color: '#3EB38896' id: QuarterTileOverlayGreyscale90 @@ -4598,6 +4986,34 @@ entities: 2608: 27,-25 2609: 27,-24 2610: 27,-23 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 2647: -23,-3 + 2648: -23,-4 + 2649: -23,-5 + 2650: -23,-6 + 2651: -23,-7 + 2652: -23,-8 + 2653: -23,-9 + 2654: -23,-11 + 2655: -22,-12 + 2656: -22,-13 + 2657: -22,-14 + 2658: -22,-15 + 2659: -23,-16 + 2660: -23,-18 + 2661: -23,-19 + 2662: -23,-20 + 2663: -23,-21 + 2664: -23,-22 + 2686: -23,-12 + 3689: 53,3 + 3834: 61,2 + 3835: 64,2 + 3836: 67,2 + 3841: 58,2 - node: color: '#797C8250' id: QuarterTileOverlayGreyscale90 @@ -4630,19 +5046,18 @@ entities: 2526: 102,-16 2527: 107,-18 2528: 105,-18 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 2316: 78,2 - 2407: 53,3 - 2425: 67,2 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 194: 9,15 - 1210: 13,25 + 3211: 13,25 + 3404: 6,28 + 3405: 7,28 + 3406: 9,28 + 3408: 9,30 + 3409: 9,31 + 3410: 9,32 + 3536: 9,33 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 @@ -4751,16 +5166,15 @@ entities: 1104: 0,0 1105: 1,0 1106: 2,0 + 2724: -8,-12 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: 45: 36,21 55: 34,28 - 59: 32,30 - 98: 37,30 177: 35,24 - 1591: 41,24 + 2832: 34,22 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -4828,19 +5242,13 @@ entities: decals: 9: 12,-28 10: 12,-27 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 1092: -6,-17 - 1369: 8,29 - 1370: 9,29 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: 2410: 49,4 2442: 70,8 + 3684: 52,4 - node: color: '#9FED5847' id: ThreeQuarterTileOverlayGreyscale @@ -4851,13 +5259,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 2218: 76,-4 - 2315: 76,5 - 2409: 52,4 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1189: 7,28 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale @@ -4878,6 +5279,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 1144: -3,-4 + 2743: 32,31 - node: color: '#EFB34128' id: ThreeQuarterTileOverlayGreyscale @@ -4895,6 +5297,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 468: 19,-39 + - node: + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale + decals: + 3668: 49,-5 - node: color: '#34A2C0B2' id: ThreeQuarterTileOverlayGreyscale180 @@ -4905,21 +5312,20 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 1768: 51,1 - 2389: 57,-8 2444: 75,7 2445: 74,4 + 3715: 69,0 + 3716: 62,-8 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: 2211: 82,-8 - 2342: 69,0 - 2354: 62,-8 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1192: 15,20 + 3204: 15,20 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale180 @@ -4956,22 +5362,21 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 1766: 49,1 - 2388: 55,-8 2438: 70,4 + 3686: 52,2 + 3721: 59,-8 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: 2202: 76,-6 2215: 78,-8 - 2304: 52,2 - 2356: 59,-8 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1190: 7,21 - 1191: 13,20 + 3196: 6,21 + 3201: 11,20 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale270 @@ -5004,6 +5409,10 @@ entities: decals: 2411: 51,4 2443: 75,8 + 3659: 52,0 + 3685: 53,4 + 3693: 58,3 + 3808: 69,2 - node: color: '#9FED5847' id: ThreeQuarterTileOverlayGreyscale90 @@ -5014,17 +5423,12 @@ entities: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1763: 52,0 2207: 82,-4 - 2314: 78,5 - 2403: 58,3 - 2408: 53,4 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1193: 15,25 - 1194: 13,28 + 3209: 15,25 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale90 @@ -5053,6 +5457,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 467: 23,-39 + - node: + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 3666: 53,-4 - node: color: '#FFFFFFFF' id: VentSmall @@ -5084,12 +5493,33 @@ entities: id: WarnCornerFlipped decals: 207: 2,-33 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleNE + decals: + 3843: 61,0 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleNW + decals: + 3842: 57,0 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSE + decals: + 3844: 61,-2 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSW + decals: + 3845: 57,-2 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: 1587: 40,27 2249: 57,-14 + 3101: 92,27 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -5099,23 +5529,39 @@ entities: 1586: 39,27 2248: 54,-14 2580: 36,-44 + 3098: 82,29 + 3102: 96,27 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1585: 40,26 2246: 57,-16 + 3104: 92,33 + 3108: 80,33 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1588: 39,26 2247: 54,-16 + 3097: 82,31 + 3103: 96,33 + - node: + color: '#334E6DC8' + id: WarnCornerSmallGreyscaleNE + decals: + 3116: 67,22 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: 1890: 9,-7 + - node: + color: '#334E6DC8' + id: WarnCornerSmallGreyscaleSE + decals: + 3115: 67,24 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE @@ -5125,30 +5571,33 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1368: 7,28 - 1597: 38,24 1620: 27,21 2561: 39,-49 + 3014: 46,33 + 3533: 6,33 + 3919: 18,-46 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 237: 55,9 - 1367: 10,28 - 1596: 41,24 2560: 41,-49 + 2974: 53,33 + 3920: 24,-46 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1091: -7,-15 1619: 27,26 2563: 39,-45 + 2848: 46,36 + 3653: 6,39 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 2562: 41,-45 + 2852: 53,36 - node: color: '#FFFFFFFF' id: WarnFull @@ -5162,6 +5611,8 @@ entities: id: WarnFullGreyscale decals: 2436: 71,3 + 3832: 70,2 + 3833: 70,1 - node: color: '#FFFFFFFF' id: WarnFullGreyscale @@ -5176,8 +5627,6 @@ entities: 1011: 26,-35 1012: 21,-34 1013: 21,-30 - 1217: 12,29 - 1221: 8,20 2426: 61,-9 - node: color: '#FFFFFFFF' @@ -5194,11 +5643,28 @@ entities: 2642: 40,-17 2643: 40,-16 2644: 40,-15 + 2731: -23,-23 + 2846: 46,35 + 2847: 46,34 + 3110: 80,34 + 3651: 6,38 + 3652: 6,37 - node: - color: '#9FED5896' + color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 2361: 62,-6 + 3114: 67,23 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 3770: 62,-6 + 3849: 61,-1 + - node: + color: '#FA750096' + id: WarnLineGreyscaleE + decals: + 3767: 53,-7 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5216,15 +5682,16 @@ entities: 1887: 9,-6 1888: 9,-5 1889: 9,-4 + 3170: 23,-40 + 3171: 17,-40 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2367: 61,0 - 2368: 60,0 - 2369: 58,0 - 2370: 57,0 - 2435: 71,2 + 3771: 56,3 + 3850: 58,0 + 3851: 59,0 + 3852: 60,0 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5236,36 +5703,29 @@ entities: 443: 32,-39 444: 31,-39 469: 21,-39 - 1218: 12,28 - 1220: 8,19 1879: 10,-7 1880: 11,-7 1881: 12,-7 - 2363: 59,-4 - 2364: 60,-4 - 2365: 61,-4 - 2366: 62,-4 2397: 57,-4 - 2398: 56,-4 - 2399: 55,-4 + 3231: 11,28 + 3232: 12,28 + 3234: 13,28 + 3415: 8,28 + 3417: 5,33 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2371: 61,-2 - 2372: 60,-2 - 2373: 58,-2 - 2374: 57,-2 - 2375: 59,-2 - 2394: 56,-8 + 3762: 61,-8 + 3769: 65,0 + 3846: 58,-2 + 3847: 59,-2 + 3848: 60,-2 - node: - color: '#9FED5896' + color: '#FA750096' id: WarnLineGreyscaleS decals: - 2339: 77,1 - 2340: 72,1 - 2360: 61,-8 - 2362: 65,0 + 3768: 50,-9 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -5277,17 +5737,22 @@ entities: 689: 39,-37 690: 40,-37 813: 42,-8 - 1219: 14,20 - 1798: 8,21 1882: 12,-8 1883: 11,-8 1884: 10,-8 + 3226: 8,21 + 3227: 14,20 + 3416: 8,30 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2392: 55,-7 - 2393: 55,-5 + 3853: 57,-1 + - node: + color: '#FA750096' + id: WarnLineGreyscaleW + decals: + 3766: 55,-7 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW @@ -5305,14 +5770,12 @@ entities: 1896: 8,-8 1897: 8,-9 1898: 8,-10 - 2455: 69,0 - 2456: 69,1 - 2457: 69,2 + 3169: 19,-40 + 3177: 25,-40 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1090: -6,-15 2045: 51,13 2046: 50,13 2047: 49,13 @@ -5320,14 +5783,13 @@ entities: 2244: 77,-2 2252: 56,-16 2253: 55,-16 - 2378: 61,-2 - 2379: 60,-2 - 2380: 59,-2 - 2381: 58,-2 - 2382: 57,-2 2552: 40,-45 2600: 49,-12 2601: 50,-12 + 2732: -6,-20 + 3099: 84,32 + 3100: 86,32 + 3109: 79,33 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5346,6 +5808,12 @@ entities: 2591: 36,-47 2592: 36,-46 2593: 36,-45 + 2972: 53,34 + 2973: 53,35 + 3221: 6,27 + 3222: 6,26 + 3223: 6,24 + 3224: 6,23 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5364,10 +5832,6 @@ entities: 754: 22,-16 755: 21,-16 756: 20,-16 - 1365: 8,28 - 1366: 9,28 - 1592: 40,24 - 1593: 39,24 2048: 51,15 2049: 50,15 2050: 49,15 @@ -5375,11 +5839,6 @@ entities: 2241: 78,-1 2254: 56,-14 2255: 55,-14 - 2383: 61,0 - 2384: 60,0 - 2385: 59,0 - 2386: 58,0 - 2387: 57,0 2556: 40,-49 2581: 37,-44 2582: 38,-44 @@ -5389,6 +5848,17 @@ entities: 2586: 42,-44 2587: 44,-44 2588: 43,-44 + 2854: 48,33 + 2855: 49,33 + 2856: 50,33 + 3530: 7,33 + 3531: 8,33 + 3537: 9,33 + 3914: 19,-46 + 3915: 20,-46 + 3916: 21,-46 + 3917: 22,-46 + 3918: 23,-46 - node: color: '#FED83DFF' id: WarningLine @@ -5423,21 +5893,29 @@ entities: id: WoodTrimThinCornerNe decals: 1858: 20,-3 + 3240: 9,19 + 3249: 6,16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 1856: 18,-3 + 3237: 5,19 + 3250: 5,16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 1861: 20,-6 + 3239: 9,18 + 3248: 6,15 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 1853: 18,-6 + 3238: 5,18 + 3247: 5,15 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5456,12 +5934,18 @@ entities: 1095: -3,-11 1096: -4,-11 1857: 19,-3 + 3241: 8,19 + 3242: 7,19 + 3243: 6,19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: 1862: 19,-6 2598: 36,43 + 3244: 6,18 + 3245: 7,18 + 3246: 8,18 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -5470,231 +5954,242 @@ entities: 1855: 18,-4 - node: cleanable: True - angle: -4.71238898038469 rad - color: '#00000060' + angle: -1.5707963267948966 rad + color: '#1206120F' id: footprint decals: - 1274: 8.005591,29.808443 - 1275: 8.443091,30.551498 - 1276: 7.7903137,30.363998 - 1277: 7.5403137,30.107054 - 1278: 6.6653137,30.752888 - 1279: 7.7486477,31.218166 - 1280: 7.929203,31.732056 - 1281: 8.665314,31.08622 - 1282: 7.4153137,31.32233 - 1283: 8.116703,30.454277 - 1284: 8.651425,31.044556 - 1294: 7.8406677,26.12399 - 1295: 8.559418,25.93649 - 1296: 8.918793,26.452114 - 1297: 7.8875427,25.56149 + 3038: 37.85091,30.216513 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#12061228' + id: footprint + decals: + 3037: 37.455074,30.584824 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#12061247' + id: footprint + decals: + 3034: 36.107853,30.160917 + 3035: 36.482853,30.550077 + 3036: 37.08702,30.258207 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#3C323266' + id: footprint + decals: + 3622: 5.1542163,36.791412 + 3623: 5.80005,37.222267 + 3624: 6.230605,36.791412 + 3625: 5.11255,38.11872 + 3626: 4.480605,38.41754 + 3627: 3.9042163,38.007534 + 3636: 3.7167163,37.118027 + 3637: 4.2514386,36.791412 + 3638: 4.633383,37.229214 + 3639: 5.480605,36.881752 + 3640: 6.098661,37.26396 + 3641: 5.959772,36.819206 + 3642: 5.5778275,37.701763 + - node: + cleanable: True + color: '#3C323266' + id: footprint + decals: + 3617: 4.7514386,36.826157 + 3618: 5.133383,37.236164 + 3619: 4.7653275,37.92414 + 3620: 5.168105,38.33415 + 3621: 4.7653275,38.869244 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#3C323266' + id: footprint + decals: + 3628: 5.11255,38.737206 + 3629: 4.848661,38.49398 + 3630: 4.5361605,37.86855 + 3631: 4.05005,37.395996 + 3632: 3.6681051,37.792107 + 3633: 3.9736605,37.708714 + 3634: 3.6958828,37.395996 + 3635: 4.3139386,37.722614 - node: cleanable: True angle: -3.141592653589793 rad - color: '#00000060' + color: '#3C323270' id: footprint decals: - 1285: 7.9222584,30.25727 - 1286: 8.206981,29.875326 - 1287: 8.054203,29.31977 - 1288: 8.387536,28.916994 - 1289: 8.068091,28.375326 - 1290: 8.401425,28.000326 - 1291: 8.165314,27.666994 - 1292: 8.540314,27.41005 - 1293: 9.262536,27.312826 + 3643: 5.152672,32.323315 + 3644: 4.850589,31.760422 - node: - angle: -1.5707963267948966 rad - color: '#00000060' + cleanable: True + color: '#3C323270' id: footprint decals: - 1410: 8.091304,16.603054 - 1411: 8.320471,16.964165 - 1412: 7.820471,17.39472 - 1413: 8.362137,16.922499 - 1414: 8.091304,17.797499 - 1415: 8.132971,18.061386 - 1416: 7.834359,18.25583 - 1417: 8.382971,18.450275 - 1418: 8.445471,17.83222 + 3645: 12.683783,26.23768 + 3646: 13.173366,26.82142 + 3647: 12.777533,27.290495 + 3648: 13.204616,27.884659 + 3649: 12.767116,28.270344 + 3650: 13.121283,28.781115 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#4632327F' + id: footprint + decals: + 3459: 7.786436,27.447971 + 3460: 8.098936,28.059507 + 3461: 7.765602,28.810028 + 3462: 8.182269,29.303427 + 3463: 7.8003244,29.914963 + 3464: 8.182269,30.58904 + 3465: 7.79338,31.068169 + 3466: 4.765602,32.756844 + 3468: 4.7794914,34.091103 + 3469: 5.1614356,34.854633 + 3470: 4.807269,35.605152 + 3471: 5.203102,36.20974 - node: cleanable: True angle: -1.5707963267948966 rad - color: '#00000060' + color: '#4632327F' id: footprint decals: - 1263: 6.5194807,30.009832 - 1264: 6.887536,30.565388 - 1265: 7.1514254,30.093164 - 1266: 7.5194807,30.676498 - 1267: 8.200036,30.113998 - 1268: 8.422258,30.940388 - 1269: 9.026425,30.315388 - 1270: 6.450036,31.676498 - 1271: 7.241703,31.891777 - 1272: 8.130591,31.03761 - 1273: 7.026425,31.35011 - 1298: 11.25042,22.296373 - 1299: 12.234795,21.765123 - 1300: 12.703545,22.343248 - 1301: 13.734795,21.671373 - 1302: 14.53167,22.202623 - 1303: 14.93792,21.390123 - - node: - color: '#00000060' - id: footprint - decals: - 1427: 8.546305,22.79264 - 1428: 10.350877,23.736956 + 3339: 9.7551565,23.26556 + 3340: 10.199601,22.820807 + 3341: 10.789879,23.24471 + 3342: 11.282934,22.862501 + 3343: 12.08849,23.272509 + 3344: 12.560712,22.834705 + 3363: 8.78505,22.233381 + 3364: 9.298939,21.941511 + 3365: 9.979495,22.309822 + 3366: 8.208661,22.017954 + 3367: 7.4447727,22.268127 + 3500: 8.125149,30.19862 + 3501: 8.625149,29.872005 + 3502: 9.069593,30.177773 + 3511: 7.786661,28.240509 + 3512: 8.321383,27.74711 + 3513: 8.92555,28.205763 + 3514: 9.258883,27.802704 + 3515: 9.904717,28.212711 - node: cleanable: True - color: '#00000060' + color: '#4632327F' id: footprint decals: - 1253: 8.831981,27.987852 - 1254: 9.005591,28.265629 - 1255: 8.769481,28.494795 - 1256: 9.054203,28.842018 - 1257: 8.755591,29.147573 - 1258: 9.109758,29.473963 - 1259: 8.762536,29.828129 - 1260: 9.088925,30.078129 - 1261: 8.755591,30.522573 - 1262: 9.081981,30.522573 - 1312: 13.708358,19.952623 - 1313: 14.145858,20.890123 - 1314: 13.630233,21.452623 - 1315: 13.739608,20.593248 - 1316: 14.130233,20.265123 - 1317: 13.661483,21.890123 - 1318: 14.036483,22.343248 - 1319: 13.458358,23.327623 - 1320: 14.020858,23.452623 - 1321: 14.005233,24.218248 - 1322: 13.645858,22.858873 - 1391: 7.237137,16.09611 - 1392: 7.7232485,16.464165 - 1393: 7.362137,16.915554 - 1394: 7.917693,17.665554 - 1395: 7.521859,18.13083 - 1396: 7.980193,18.56833 - 1397: 7.882971,19.109999 - 1429: 10.046046,23.44008 - 1430: 7.2491713,26.34633 - 1431: 8.389796,26.674456 - 1432: 13.452296,20.69008 - 1433: 13.467921,21.31508 - 1434: 8.999171,26.4967 - 1435: 8.046046,27.90295 - 1436: 8.624171,27.59045 - 1437: 8.983546,28.09045 - 1438: 8.608546,29.3092 - - node: - angle: 1.5707963267948966 rad - color: '#00000060' - id: footprint - decals: - 1419: 7.966304,16.290554 - 1420: 7.626026,15.89472 - 1421: 6.952415,16.39472 - 1422: 6.9801927,15.866943 - 1423: 6.834359,17.01972 - 1424: 6.876026,17.748886 - 1425: 7.542693,18.01972 - 1426: 7.709359,19.228054 + 3332: 13.713909,20.02025 + 3333: 14.151409,20.360764 + 3334: 13.706546,20.923655 + 3335: 14.095434,21.389256 + 3336: 13.6926565,21.959097 + 3337: 14.116268,22.640125 + 3338: 13.706546,23.293356 + 3358: 8.194773,20.90607 + 3359: 7.8475504,21.302177 + 3360: 8.173939,21.823374 + 3361: 7.7850504,22.497452 + 3362: 8.132273,23.053394 + 3478: 5.7794914,30.754562 + 3479: 6.140602,31.234062 + 3480: 5.79338,31.73441 + 3481: 6.1753244,32.332047 + 3496: 8.590913,31.748306 + 3497: 8.292302,32.345943 + 3503: 7.8585606,27.74704 + 3504: 8.150227,28.435019 + 3505: 7.7196712,29.053503 + 3506: 8.198838,29.574697 + 3507: 7.7405043,30.297422 + 3508: 7.976616,30.756943 + 3509: 8.210273,27.260662 + 3510: 7.793606,26.725567 + 3542: 5.813014,32.55113 + 3543: 6.104681,33.051476 + 3544: 8.569844,32.77003 + 3545: 8.246928,33.09317 - node: cleanable: True angle: 1.5707963267948966 rad - color: '#00000060' + color: '#4632327F' id: footprint decals: - 1304: 14.972425,21.077623 - 1305: 14.316175,21.655748 - 1306: 13.8318,21.202623 - 1307: 13.003675,21.843248 - 1308: 12.534925,21.390123 - 1309: 11.6443,21.843248 - 1310: 10.972425,21.468248 + 3345: 15.178768,21.34061 + 3346: 14.782934,20.916706 + 3347: 14.282934,21.24332 + 3348: 13.5051565,20.902807 + 3349: 13.178768,21.305864 + 3350: 12.532934,20.937553 + 3351: 11.914879,21.333662 + 3352: 11.345434,20.923655 + 3353: 10.748212,21.326712 + 3354: 10.074601,20.909756 + 3355: 13.1926565,25.221567 + 3356: 12.595434,24.818508 + 3357: 11.762101,25.263262 + 3368: 6.7781057,25.172922 + 3369: 7.125328,24.776814 + 3370: 7.7642174,25.20072 + 3385: 13.443252,22.368464 + 3386: 13.033529,22.01405 + 3387: 12.686307,22.340666 + 3388: 12.221029,21.979303 + 3389: 11.734919,22.410158 + 3390: 11.387696,21.951508 + 3391: 11.109919,22.431005 + 3392: 10.630752,21.951508 + 3393: 15.878498,20.976871 + 3483: 8.112824,31.657967 + 3484: 7.432269,31.331352 + 3485: 6.703102,31.748306 + 3486: 6.3767133,31.366096 + 3487: 5.633658,31.922039 + 3490: 5.0989356,32.749004 + 3492: 7.6128244,30.712868 + 3493: 7.1336575,31.178467 + 3494: 6.6128244,30.733715 + 3495: 5.994769,31.122875 + 3516: 15.162565,20.48974 + 3517: 14.683398,20.187449 + 3518: 14.183398,20.656523 + 3519: 13.641731,20.27084 + 3520: 8.2431135,24.784645 + 3521: 8.8368635,25.201601 + 3522: 17.269722,20.829908 + 3523: 16.759306,20.339985 + 3524: 16.155138,20.871605 + 3525: 15.665556,20.29829 + 3546: 5.6948442,33.072323 + 3547: 6.580261,32.77003 + 3548: 7.2885942,33.08275 + 3549: 7.799011,32.811726 - node: cleanable: True angle: 3.141592653589793 rad - color: '#00000060' + color: '#4632327F' id: footprint decals: - 1398: 6.8551927,16.728054 - 1399: 7.570471,17.200275 - 1400: 7.1607485,17.623886 - 1401: 8.2649145,17.76972 - 1402: 7.7857485,18.45722 - 1403: 8.2440815,18.929443 - 1404: 8.2232485,18.65861 - 1405: 8.132971,18.03361 - 1406: 7.292692,18.554443 - 1407: 7.8274145,17.075275 - 1408: 7.167692,16.964165 - 1409: 7.4732485,16.31833 - - node: - cleanable: True - angle: 6.283185307179586 rad - color: '#00000060' - id: footprint - decals: - 1311: 7.894642,22.655748 - - node: - cleanable: True - color: '#0000065D' - id: footprint - decals: - 1812: 8.153207,20.861673 - 1813: 8.434457,21.127298 - 1814: 8.215707,21.486673 - 1815: 8.512582,21.892923 - 1816: 8.309457,22.142923 - 1817: 8.731332,22.627298 - 1818: 8.496957,23.517923 - 1819: 8.262582,24.096048 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#0000065D' - id: footprint - decals: - 1834: 9.684457,21.892923 - 1835: 8.856332,22.736673 - 1836: 8.856332,22.721048 - 1837: 10.309457,22.674173 - 1838: 11.246957,22.017923 - 1839: 10.028207,22.033548 - 1840: 10.215707,22.627298 - 1841: 9.262582,22.174173 - 1842: 9.106332,22.221048 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#0000065D' - id: footprint - decals: - 1820: 7.856332,21.033548 - 1821: 8.215707,21.408548 - 1822: 7.950082,21.892923 - 1823: 8.762582,22.283548 - 1824: 8.293832,23.142923 - 1825: 8.965707,23.392923 - - node: - cleanable: True - angle: 4.71238898038469 rad - color: '#0000065D' - id: footprint - decals: - 1826: 8.762582,21.236673 - 1827: 9.184457,21.986673 - 1828: 9.731332,21.486673 - 1829: 9.762582,22.346048 - 1830: 10.543832,21.799173 - 1831: 10.918832,22.111673 - 1832: 11.606332,21.705423 - 1833: 12.215707,22.096048 + 3371: 11.68782,23.220688 + 3372: 11.993376,22.81763 + 3373: 11.666986,22.206095 + 3374: 12.06282,21.664051 + 3375: 11.701709,21.122007 + 3376: 12.076709,20.593864 + 3377: 9.729486,25.284622 + 3378: 10.076709,24.82597 + 3379: 9.722542,24.283926 + 3380: 10.104486,23.436115 + 3381: 9.743376,22.748137 + 3382: 10.194764,22.185247 + 3383: 9.790189,21.868116 + 3384: 10.158244,21.353868 - node: cleanable: True angle: -4.71238898038469 rad @@ -5785,10 +6280,7 @@ entities: 517: 21.085358,-39.21534 518: 20.606192,-39.21534 519: 16.110773,-41.92628 - 520: 16.312162,-40.836002 - 521: 15.944107,-40.405445 522: 16.124662,-41.55128 - 523: 16.194107,-40.780445 527: 21.153759,-38.723778 528: 20.771816,-38.58489 529: 21.077372,-38.26544 @@ -5905,7 +6397,6 @@ entities: decals: 505: 16.144655,-41.73583 506: 16.436321,-41.476566 - 507: 16.311321,-41.008976 - node: color: '#FFFFFFFF' id: ghost @@ -5997,8 +6488,47 @@ entities: - type: Transform pos: 48.345963,-21.521229 parent: 2 +- proto: ActionToggleInternals + entities: + - uid: 5500 + components: + - type: Transform + parent: 5530 + - type: InstantAction + container: 5530 + - uid: 6197 + components: + - type: Transform + parent: 10847 + - type: InstantAction + container: 10847 +- proto: ActionToggleLight + entities: + - uid: 13568 + components: + - type: Transform + parent: 13567 + - type: InstantAction + container: 13567 - proto: AirAlarm entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 8106 + - 14672 + - 29 + - 8238 + - 371 + - 14735 + - 14736 + - 429 + - 8203 - uid: 138 components: - type: Transform @@ -6124,22 +6654,14 @@ entities: parent: 2 - type: DeviceList devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - 7837 - 7838 + - 13985 + - 13980 + - 193 + - 241 + - 14065 + - 14064 - uid: 2296 components: - type: Transform @@ -6246,23 +6768,19 @@ entities: - 6684 - 6570 - 6571 - - uid: 7839 + - uid: 7962 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-15.5 + pos: 7.5,17.5 parent: 2 - type: DeviceList devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 - - 7472 - - 7469 + - 8106 + - 6908 + - 12833 + - 6911 + - 14960 - uid: 8011 components: - type: Transform @@ -6291,18 +6809,6 @@ entities: - 8009 - 6778 - 7708 - - uid: 8239 - components: - - type: Transform - pos: 14.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 12522 - - 8237 - - 8238 - - 8222 - - 8229 - uid: 8922 components: - type: Transform @@ -6336,6 +6842,8 @@ entities: - 9589 - 9570 - 9569 + - 9236 + - 13510 - uid: 9637 components: - type: Transform @@ -6434,6 +6942,18 @@ entities: - type: DeviceList devices: - 8659 + - uid: 10988 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 6774 + - 9456 + - 7760 + - 2301 + - 1812 - uid: 11165 components: - type: Transform @@ -6493,6 +7013,9 @@ entities: - 6568 - 6640 - 6628 + - 14994 + - 14992 + - 12161 - uid: 11730 components: - type: Transform @@ -6553,12 +7076,12 @@ entities: - 5190 - 11332 - 11355 - - 12158 - - 12159 - - 12161 - 12162 - 11938 - 11945 + - 9896 + - 9897 + - 9858 - uid: 12163 components: - type: Transform @@ -6568,9 +7091,8 @@ entities: devices: - 11366 - 11367 - - 12158 - - 12159 - - 12161 + - 9896 + - 9897 - uid: 12416 components: - type: Transform @@ -6729,19 +7251,6 @@ entities: devices: - 11957 - 11956 - - uid: 12520 - components: - - type: Transform - pos: 19.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 12519 - - 12086 - - 8237 - - 8238 - - 8236 - - 8235 - uid: 12528 components: - type: Transform @@ -6754,6 +7263,9 @@ entities: - 8575 - 8629 - 8630 + - 2263 + - 10452 + - 2265 - uid: 12530 components: - type: Transform @@ -6817,6 +7329,129 @@ entities: - 12563 - 10346 - 10401 + - uid: 13512 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8349 + - 13511 + - 4414 + - 13515 + - 13517 + - 3152 + - 13523 + - 13514 + - 13507 + - uid: 13984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 14063 + - 14061 + - 14062 + - 13974 + - 13975 + - 13976 + - 13979 + - 13978 + - 13977 + - 13983 + - 13982 + - 13981 + - 14014 + - 14015 + - 14029 + - 14031 + - 14030 + - 14032 + - uid: 14067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 13967 + - 13894 + - 13973 + - 14066 + - 2125 + - 192 + - 1317 + - 1336 + - 7469 + - 1232 + - 1161 + - 7895 + - 6854 + - 7663 + - uid: 14247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 14547 + - 14385 + - 14373 + - 14377 + - 14384 + - 14420 + - 14421 + - 14433 + - 14432 + - 14549 + - 14552 + - 14551 + - 14553 + - uid: 14615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 14614 + - 14613 + - 14616 + - 14622 + - uid: 14670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 14671 + - 14669 + - 14667 + - 14672 + - uid: 14754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 30 + - 8238 + - 29 + - 12086 + - 8236 + - 8235 - proto: AirCanister entities: - uid: 2078 @@ -6839,36 +7474,41 @@ entities: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 5747 + - uid: 8337 components: - type: Transform - pos: 48.5,-13.5 + pos: 46.5,38.5 parent: 2 - - uid: 7858 + - uid: 9900 components: - type: Transform - pos: 70.5,-19.5 + pos: 46.5,-14.5 parent: 2 - uid: 10794 components: - type: Transform pos: 78.5,-16.5 parent: 2 - - uid: 10842 + - uid: 11521 components: - type: Transform - pos: 46.5,36.5 - parent: 2 - - uid: 10843 - components: - - type: Transform - pos: 46.5,35.5 + pos: 71.5,-18.5 parent: 2 - uid: 12802 components: - type: Transform pos: 14.5,-9.5 parent: 2 + - uid: 13571 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: 81.5,34.5 + parent: 2 - proto: Airlock entities: - uid: 467 @@ -6891,11 +7531,6 @@ entities: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 2290 - components: - - type: Transform - pos: 41.5,36.5 - parent: 2 - uid: 8842 components: - type: Transform @@ -7000,22 +7635,22 @@ entities: parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 2081 + - uid: 41 components: - type: Transform - pos: 16.5,22.5 + pos: 16.5,21.5 parent: 2 - - uid: 2082 - components: - - type: Transform - pos: 16.5,20.5 - parent: 2 - - uid: 2083 + - uid: 7015 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 11094 + - uid: 7168 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 7880 components: - type: Transform pos: 21.5,21.5 @@ -7082,6 +7717,12 @@ entities: - type: Transform pos: 25.5,41.5 parent: 2 + - uid: 14095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,21.5 + parent: 2 - proto: AirlockCommandLocked entities: - uid: 2788 @@ -7096,6 +7737,18 @@ entities: - type: Transform pos: 29.5,36.5 parent: 2 + - uid: 14087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,23.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,32.5 + parent: 2 - proto: AirlockDetectiveGlassLocked entities: - uid: 2004 @@ -7105,10 +7758,11 @@ entities: parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 2131 + - uid: 11279 components: - type: Transform - pos: 40.5,18.5 + rot: 1.5707963267948966 rad + pos: 41.5,21.5 parent: 2 - proto: AirlockEngineering entities: @@ -7168,16 +7822,17 @@ entities: parent: 2 - proto: AirlockEngineeringLocked entities: + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 2 - uid: 118 components: - type: Transform pos: 3.5,-9.5 parent: 2 - - uid: 128 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - uid: 596 components: - type: Transform @@ -7203,6 +7858,23 @@ entities: - type: Transform pos: 34.5,-16.5 parent: 2 + - uid: 2046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-39.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-12.5 + parent: 2 - uid: 3408 components: - type: Transform @@ -7213,52 +7885,32 @@ entities: - type: Transform pos: 48.5,27.5 parent: 2 - - uid: 4637 - components: - - type: Transform - pos: 18.5,-39.5 - parent: 2 - - uid: 4643 - components: - - type: Transform - pos: 24.5,-39.5 - parent: 2 - - type: Door - secondsUntilStateChange: -5888.925 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 4744 - components: - - type: Transform - pos: 44.5,28.5 - parent: 2 - - uid: 5726 - components: - - type: Transform - pos: 52.5,-11.5 - parent: 2 - uid: 5824 components: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 6198 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 - uid: 6899 components: - type: Transform pos: 16.5,-12.5 parent: 2 + - uid: 11212 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 - uid: 13715 components: - type: Transform pos: 6.5,-22.5 parent: 2 + - uid: 15005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-12.5 + parent: 2 - proto: AirlockExternal entities: - uid: 1889 @@ -7327,55 +7979,17 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - - uid: 69 - components: - - type: Transform - pos: 11.5,37.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 70: - - DoorStatus: DoorBolt - - uid: 70 - components: - - type: Transform - pos: 11.5,35.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 69: - - DoorStatus: DoorBolt - - uid: 171 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 173: - - DoorStatus: DoorBolt - uid: 173 components: - type: Transform pos: 13.5,-43.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 171: + 225: - DoorStatus: DoorBolt - - uid: 225 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 2 - uid: 226 components: - type: Transform @@ -7441,107 +8055,194 @@ entities: linkedPorts: 12931: - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,49.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,49.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-20.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 258 + - uid: 411 components: - type: Transform - pos: 6.5,24.5 + pos: 5.5,24.5 parent: 2 - - uid: 2001 + - uid: 428 components: - type: Transform - pos: 6.5,26.5 + rot: -1.5707963267948966 rad + pos: 5.5,26.5 parent: 2 - - uid: 6863 + - uid: 974 components: - type: Transform - pos: 6.5,16.5 + pos: 5.5,34.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7886: + 975: - DoorStatus: DoorBolt - 7881: - - DoorStatus: DoorBolt - - uid: 7674 + - uid: 975 components: - type: Transform - pos: 6.5,17.5 + pos: 5.5,36.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7886: + 974: - DoorStatus: DoorBolt - 7881: - - DoorStatus: DoorBolt - - uid: 7881 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 225 components: - type: Transform - pos: 4.5,17.5 + rot: -1.5707963267948966 rad + pos: 15.5,-41.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 6863: + 173: - DoorStatus: DoorBolt - 7674: - - DoorStatus: DoorBolt - - uid: 7886 + - uid: 662 components: - type: Transform - pos: 4.5,16.5 + rot: 3.141592653589793 rad + pos: 18.5,-15.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 7674: - - DoorStatus: DoorBolt - 6863: - - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - - uid: 2734 + - uid: 941 components: - type: Transform - pos: -5.5,-18.5 + pos: -14.5,-23.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 6839: + 13780: - DoorStatus: DoorBolt - - uid: 6839 + - uid: 4556 components: - type: Transform - pos: -5.5,-15.5 + rot: -1.5707963267948966 rad + pos: 11.5,34.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2734: + 4517: + - DoorStatus: DoorBolt + - uid: 8930 + components: + - type: Transform + pos: 73.5,20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2333: + - DoorStatus: DoorBolt + - uid: 14224 + components: + - type: Transform + pos: 81.5,28.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14221: - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 1332 + - uid: 13727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-10.5 + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 parent: 2 - - uid: 1334 + - uid: 13730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-10.5 + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-16.5 parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: @@ -7551,12 +8252,24 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - - uid: 193 + - uid: 7544 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 + - uid: 7985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 8327 @@ -7565,6 +8278,44 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,4.5 parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,51.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,51.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 - proto: AirlockExternalLocked entities: - uid: 1369 @@ -7589,17 +8340,42 @@ entities: linkedPorts: 1369: - DoorStatus: DoorBolt - - uid: 3202 + - uid: 2333 components: - type: Transform - pos: 56.5,49.5 + rot: 3.141592653589793 rad + pos: 75.5,20.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2167: - - DoorStatus: Close + 8930: + - DoorStatus: DoorBolt + - uid: 4517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4556: + - DoorStatus: DoorBolt + - uid: 7759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13556: + - DoorStatus: DoorBolt - uid: 8728 components: - type: Transform @@ -7622,20 +8398,40 @@ entities: linkedPorts: 8728: - DoorStatus: DoorBolt -- proto: AirlockExternalShuttleLocked - entities: - - uid: 2167 + - uid: 13556 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,51.5 + pos: 64.5,43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 3202: - - DoorStatus: Close - type: DeviceLinkSink invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7759: + - DoorStatus: DoorBolt + - uid: 13780 + components: + - type: Transform + pos: -14.5,-25.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 941: + - DoorStatus: DoorBolt + - uid: 14221 + components: + - type: Transform + pos: 81.5,26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14224: + - DoorStatus: DoorBolt - proto: AirlockFreezer entities: - uid: 10 @@ -7648,6 +8444,18 @@ entities: - type: Transform pos: 9.5,12.5 parent: 2 + - uid: 6066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,35.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,37.5 + parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 559 @@ -7665,6 +8473,27 @@ entities: parent: 2 - proto: AirlockGlass entities: + - uid: 49 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 - uid: 377 components: - type: Transform @@ -7800,12 +8629,6 @@ entities: - type: Transform pos: 2.5,0.5 parent: 2 - - uid: 7764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 2 - uid: 7766 components: - type: Transform @@ -7816,18 +8639,6 @@ entities: - type: Transform pos: 23.5,43.5 parent: 2 - - uid: 7769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 2 - - uid: 7779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - uid: 7870 components: - type: Transform @@ -7863,19 +8674,24 @@ entities: - type: Transform pos: 106.5,-20.5 parent: 2 + - uid: 12452 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 2002 + - uid: 7965 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,26.5 + pos: 3.5,24.5 parent: 2 - - uid: 2003 + - uid: 8030 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,24.5 + pos: 3.5,26.5 parent: 2 - proto: AirlockHeadOfPersonnelGlassLocked entities: @@ -7978,16 +8794,16 @@ entities: parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 1062 - components: - - type: Transform - pos: 14.5,19.5 - parent: 2 - uid: 2115 components: - type: Transform pos: 14.5,28.5 parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 - proto: AirlockMaintChapelLocked entities: - uid: 1192 @@ -8220,10 +9036,23 @@ entities: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 11018 + - uid: 13323 components: - type: Transform - pos: 71.5,22.5 + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-22.5 parent: 2 - proto: AirlockMaintMedLocked entities: @@ -8281,19 +9110,18 @@ entities: - type: Transform pos: 56.5,4.5 parent: 2 -- proto: AirlockMaintSalvageLocked - entities: - - uid: 7972 - components: - - type: Transform - pos: 10.5,19.5 - parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 2491 + - uid: 365 components: - type: Transform - pos: 33.5,31.5 + pos: 39.5,37.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,32.5 parent: 2 - uid: 7737 components: @@ -8315,6 +9143,26 @@ entities: parent: 2 - proto: AirlockMedicalGlassLocked entities: + - uid: 599 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 - uid: 5011 components: - type: Transform @@ -8337,6 +9185,11 @@ entities: parent: 2 - proto: AirlockMedicalLocked entities: + - uid: 1146 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 - uid: 11898 components: - type: Transform @@ -8344,6 +9197,11 @@ entities: parent: 2 - proto: AirlockMedicalMorgueLocked entities: + - uid: 1025 + components: + - type: Transform + pos: 72.5,0.5 + parent: 2 - uid: 11848 components: - type: Transform @@ -8351,31 +9209,39 @@ entities: parent: 2 - proto: AirlockQuartermasterGlassLocked entities: - - uid: 2084 + - uid: 191 components: - type: Transform - pos: 12.5,29.5 + pos: 8.5,20.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 2136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,17.5 parent: 2 - proto: AirlockResearchDirectorGlassLocked entities: + - uid: 907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,24.5 + parent: 2 - uid: 5232 components: - type: Transform pos: 62.5,12.5 parent: 2 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 5253 - components: - - type: Transform - pos: 52.5,24.5 - parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 437 + - uid: 7836 components: - type: Transform - pos: 8.5,20.5 + rot: -1.5707963267948966 rad + pos: 8.5,29.5 parent: 2 - proto: AirlockScienceGlassLocked entities: @@ -8408,28 +9274,64 @@ entities: parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 2323 - components: - - type: Transform - pos: 38.5,30.5 - parent: 2 - - uid: 2324 - components: - - type: Transform - pos: 35.5,30.5 - parent: 2 - uid: 2402 components: - type: Transform pos: 37.5,22.5 parent: 2 + - uid: 3215 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: 35.5,30.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,31.5 + parent: 2 - proto: AirlockSecurityLocked entities: + - uid: 1831 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 - uid: 7736 components: - type: Transform pos: -0.5,-2.5 parent: 2 + - uid: 8430 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 - proto: AirlockServiceLocked entities: - uid: 555 @@ -8451,21 +9353,6 @@ entities: parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 575 - components: - - type: Transform - pos: 53.5,-1.5 - parent: 2 - - uid: 576 - components: - - type: Transform - pos: 53.5,0.5 - parent: 2 - - uid: 598 - components: - - type: Transform - pos: 65.5,-0.5 - parent: 2 - uid: 2910 components: - type: Transform @@ -8476,35 +9363,57 @@ entities: - type: Transform pos: 77.5,-2.5 parent: 2 -- proto: AirlockVirologyLocked - entities: - - uid: 599 - components: - - type: Transform - pos: 66.5,-7.5 - parent: 2 - - uid: 600 - components: - - type: Transform - pos: 63.5,-5.5 - parent: 2 - - uid: 601 - components: - - type: Transform - pos: 72.5,0.5 - parent: 2 - proto: AirSensor entities: + - uid: 30 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7013 + - 14754 - uid: 185 components: - type: Transform pos: 59.5,18.5 parent: 2 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14737 + - 5 + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - uid: 2125 components: - type: Transform pos: -3.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - uid: 2265 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 - uid: 4554 components: - type: Transform @@ -8535,11 +9444,6 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 7843 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - uid: 8008 components: - type: Transform @@ -8560,6 +9464,15 @@ entities: - type: Transform pos: 26.5,-5.5 parent: 2 + - uid: 9456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - uid: 9589 components: - type: Transform @@ -8670,11 +9583,6 @@ entities: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 12522 - components: - - type: Transform - pos: 15.5,23.5 - parent: 2 - uid: 12529 components: - type: Transform @@ -8735,6 +9643,132 @@ entities: - type: Transform pos: 67.5,13.5 parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 + - uid: 13511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13515 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 14061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 14065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 14066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 14547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,30.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14614 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 + - uid: 14671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 - proto: AltarSpawner entities: - uid: 2526 @@ -8800,11 +9834,13 @@ entities: rot: 3.141592653589793 rad pos: 10.5,11.5 parent: 2 - - uid: 671 + - uid: 598 components: + - type: MetaData + name: Service/Chem Maint APC - type: Transform rot: 3.141592653589793 rad - pos: 55.5,37.5 + pos: 49.5,-14.5 parent: 2 - uid: 681 components: @@ -8838,6 +9874,22 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 + - uid: 1177 + components: + - type: MetaData + name: Singulo APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 2 + - uid: 1316 + components: + - type: MetaData + name: Departures APC + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 2 - uid: 1539 components: - type: MetaData @@ -8872,21 +9924,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-15.5 parent: 2 - - uid: 1815 - components: - - type: MetaData - name: Detective's Office APC - - type: Transform - pos: 41.5,21.5 - parent: 2 - - uid: 1948 - components: - - type: MetaData - name: Perma Brig APC - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,29.5 - parent: 2 - uid: 2378 components: - type: MetaData @@ -8930,6 +9967,29 @@ entities: - type: Transform pos: 69.5,47.5 parent: 2 + - uid: 3221 + components: + - type: MetaData + name: Perma APC + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 3250 + components: + - type: MetaData + name: Detective APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,20.5 + parent: 2 + - uid: 3333 + components: + - type: MetaData + name: Visitor Dock APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 - uid: 3407 components: - type: MetaData @@ -8938,14 +9998,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-8.5 parent: 2 - - uid: 4113 - components: - - type: MetaData - name: Departures APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 2 - uid: 4116 components: - type: MetaData @@ -8985,22 +10037,6 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 4815 - components: - - type: MetaData - name: Cargo Desk APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 2 - - uid: 4829 - components: - - type: MetaData - name: Grav Gen APC - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,35.5 - parent: 2 - uid: 4877 components: - type: MetaData @@ -9133,14 +10169,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - - uid: 5577 - components: - - type: MetaData - name: Singulo APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 - parent: 2 - uid: 5648 components: - type: MetaData @@ -9215,14 +10243,6 @@ entities: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 6358 - components: - - type: MetaData - name: Maint South APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 2 - uid: 6522 components: - type: MetaData @@ -9260,13 +10280,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - - uid: 6873 - components: - - type: MetaData - name: Maint North APC - - type: Transform - pos: 47.5,28.5 - parent: 2 - uid: 6954 components: - type: MetaData @@ -9282,20 +10295,21 @@ entities: - type: Transform pos: 22.5,-22.5 parent: 2 - - uid: 7473 + - uid: 8061 components: - type: MetaData - name: Arrivals APC + name: Camera Server APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,36.5 + parent: 2 + - uid: 8228 + components: + - type: MetaData + name: Cargo Desk APC - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-15.5 - parent: 2 - - uid: 8585 - components: - - type: MetaData - name: Camera Server Room APC - - type: Transform - pos: 30.5,38.5 + pos: 18.5,19.5 parent: 2 - uid: 9020 components: @@ -9348,6 +10362,13 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,6.5 parent: 2 + - uid: 10970 + components: + - type: MetaData + name: Interrogation APC + - type: Transform + pos: 42.5,32.5 + parent: 2 - uid: 12151 components: - type: MetaData @@ -9356,6 +10377,14 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,23.5 parent: 2 + - uid: 12522 + components: + - type: MetaData + name: Grav Gen APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 - uid: 12934 components: - type: MetaData @@ -9363,10 +10392,50 @@ entities: - type: Transform pos: 37.5,-41.5 parent: 2 - - uid: 13609 + - uid: 12937 components: + - type: MetaData + name: Arrivals APC - type: Transform - pos: 58.5,32.5 + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 13497 + components: + - type: MetaData + name: North Maint APC + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 14150 + components: + - type: MetaData + name: AI Access APC + - type: Transform + pos: 72.5,24.5 + parent: 2 + - uid: 14405 + components: + - type: MetaData + name: AI Core Entrance APC + - type: Transform + pos: 80.5,32.5 + parent: 2 + - uid: 14434 + components: + - type: MetaData + name: AI Core Inner APC + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,28.5 + parent: 2 + - uid: 14691 + components: + - type: MetaData + name: Quartermaster APC + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 parent: 2 - proto: APCElectronics entities: @@ -9423,24 +10492,24 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 323 + - uid: 8254 + components: + - type: MetaData + name: Salvage APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 + - uid: 13690 components: - type: MetaData name: Cargo Bay APC - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,25.5 + rot: 3.141592653589793 rad + pos: 13.5,19.5 parent: 2 - proto: APCSuperCapacity entities: - - uid: 2333 - components: - - type: MetaData - name: Security APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,25.5 - parent: 2 - uid: 4928 components: - type: MetaData @@ -9448,39 +10517,76 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 2 -- proto: ArtistCircuitBoard + - uid: 14639 + components: + - type: MetaData + name: Security APC + - type: Transform + pos: 35.5,29.5 + parent: 2 +- proto: ArrivalsShuttleTimer entities: - - uid: 12661 + - uid: 13576 components: - type: Transform - pos: 52.427402,31.810074 + pos: -21.5,-17.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 +- proto: ArtistCircuitBoard + entities: + - uid: 14277 + components: + - type: Transform + pos: 84.42593,28.765135 parent: 2 - proto: AsimovCircuitBoard entities: - - uid: 13649 + - uid: 14276 components: - type: Transform - pos: 52.427402,31.622574 + pos: 85.47454,28.607038 parent: 2 - proto: AtmosDeviceFanDirectional entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 - uid: 136 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 - - uid: 373 + - uid: 258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-10.5 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - - uid: 608 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 1854 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-10.5 + pos: -10.5,2.5 parent: 2 - uid: 2027 components: @@ -9488,6 +10594,24 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 + - uid: 2609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 2 - uid: 5262 components: - type: Transform @@ -9500,24 +10624,36 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-10.5 parent: 2 - - uid: 6592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 2 - - uid: 6874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 2 - uid: 6876 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,4.5 parent: 2 + - uid: 10982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,51.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,51.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 1457 @@ -9690,18 +10826,11 @@ entities: - type: Transform pos: 15.5,-23.5 parent: 2 - - uid: 2120 + - uid: 6910 components: - type: Transform - pos: 12.5,21.5 + pos: 13.5,20.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - proto: BananaPhoneInstrument entities: - uid: 9600 @@ -9772,11 +10901,6 @@ entities: parent: 2 - proto: Beaker entities: - - uid: 366 - components: - - type: Transform - pos: 37.43033,35.332123 - parent: 2 - uid: 4247 components: - type: Transform @@ -9809,10 +10933,10 @@ entities: - type: Transform pos: 36.5,42.5 parent: 2 - - uid: 411 + - uid: 2014 components: - type: Transform - pos: 13.5,31.5 + pos: 6.5,15.5 parent: 2 - uid: 2250 components: @@ -9824,15 +10948,10 @@ entities: - type: Transform pos: 29.5,20.5 parent: 2 - - uid: 2309 + - uid: 4365 components: - type: Transform - pos: 41.5,32.5 - parent: 2 - - uid: 2310 - components: - - type: Transform - pos: 41.5,31.5 + pos: 59.5,40.5 parent: 2 - uid: 5445 components: @@ -9849,15 +10968,20 @@ entities: - type: Transform pos: 77.5,-12.5 parent: 2 + - uid: 6873 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 - uid: 9623 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 11840 + - uid: 10765 components: - type: Transform - pos: 59.5,-4.5 + pos: 63.5,4.5 parent: 2 - uid: 12245 components: @@ -9919,10 +11043,10 @@ entities: - type: Transform pos: 107.5,-23.5 parent: 2 - - uid: 13111 + - uid: 13114 components: - type: Transform - pos: 62.5,-4.5 + pos: 66.5,4.5 parent: 2 - uid: 13470 components: @@ -10009,22 +11133,22 @@ entities: - type: Transform pos: 47.5,4.5 parent: 2 + - uid: 11299 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 - uid: 11822 components: - type: Transform pos: 66.5,4.5 parent: 2 - - uid: 11826 - components: - - type: Transform - pos: 60.5,4.5 - parent: 2 - uid: 11847 components: - type: Transform pos: 59.5,-4.5 parent: 2 - - uid: 13114 + - uid: 14659 components: - type: Transform pos: 62.5,-4.5 @@ -10038,22 +11162,36 @@ entities: parent: 2 - proto: BedsheetOrange entities: - - uid: 2312 + - uid: 5253 components: - type: Transform - pos: 41.5,32.5 + rot: -1.5707963267948966 rad + pos: 59.5,32.5 parent: 2 - - uid: 2313 + - uid: 6333 components: - type: Transform - pos: 41.5,31.5 + rot: -1.5707963267948966 rad + pos: 59.5,40.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,20.5 parent: 2 - proto: BedsheetQM entities: - - uid: 252 + - uid: 2012 components: - type: Transform - pos: 13.5,31.5 + pos: 6.5,15.5 parent: 2 - proto: BedsheetRainbow entities: @@ -10146,10 +11284,10 @@ entities: parent: 2 - proto: Biogenerator entities: - - uid: 6672 + - uid: 13612 components: - type: Transform - pos: 36.5,35.5 + pos: 57.5,41.5 parent: 2 - uid: 13653 components: @@ -10168,10 +11306,10 @@ entities: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 384 + - uid: 895 components: - type: Transform - pos: 5.5,23.5 + pos: 7.5,36.5 parent: 2 - uid: 4257 components: @@ -10198,15 +11336,15 @@ entities: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 7462 + - uid: 8067 components: - type: Transform - pos: 5.5,27.5 + pos: 4.5,23.5 parent: 2 - - uid: 7618 + - uid: 8103 components: - type: Transform - pos: 5.5,15.5 + pos: 4.5,27.5 parent: 2 - uid: 12890 components: @@ -10232,14 +11370,6 @@ entities: parent: 2 - proto: BlockGameArcade entities: - - uid: 1812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,30.5 - parent: 2 - - type: SpamEmitSound - enabled: False - uid: 6617 components: - type: Transform @@ -10248,6 +11378,12 @@ entities: parent: 2 - type: SpamEmitSound enabled: False + - uid: 14655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,39.5 + parent: 2 - proto: Bonfire entities: - uid: 12709 @@ -10294,11 +11430,21 @@ entities: - type: Transform pos: 10.5,7.5 parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 57.5,34.5 + parent: 2 - uid: 5100 components: - type: Transform pos: 29.5,6.5 parent: 2 + - uid: 13607 + components: + - type: Transform + pos: 57.5,33.5 + parent: 2 - proto: BoozeDispenser entities: - uid: 2921 @@ -10345,15 +11491,10 @@ entities: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 13607 + - uid: 14630 components: - type: Transform - pos: 59.5,31.5 - parent: 2 - - uid: 13608 - components: - - type: Transform - pos: 60.5,31.5 + pos: 82.5,31.5 parent: 2 - proto: BoxBeaker entities: @@ -10367,7 +11508,7 @@ entities: - uid: 8432 components: - type: Transform - pos: 41.499786,24.789263 + pos: 39.509068,21.682957 parent: 2 - proto: BoxBodyBag entities: @@ -10378,6 +11519,11 @@ entities: parent: 2 - proto: BoxFlare entities: + - uid: 7714 + components: + - type: Transform + pos: 4.504114,40.66977 + parent: 2 - uid: 8690 components: - type: Transform @@ -10385,10 +11531,10 @@ entities: parent: 2 - proto: BoxFlashbang entities: - - uid: 8433 + - uid: 6340 components: - type: Transform - pos: 40.45291,22.492388 + pos: 36.349575,28.40067 parent: 2 - uid: 8689 components: @@ -10424,8 +11570,27 @@ entities: - type: Transform pos: -1.3771312,-12.370462 parent: 2 +- proto: BoxFolderGreen + entities: + - uid: 14568 + components: + - type: Transform + pos: 89.77968,28.605122 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 14155 + components: + - type: Transform + pos: 71.5,23.5 + parent: 2 - proto: BoxFolderRed entities: + - uid: 3138 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 - uid: 6900 components: - type: Transform @@ -10453,6 +11618,11 @@ entities: - type: Transform pos: 55.05479,-10.418922 parent: 2 + - uid: 14999 + components: + - type: Transform + pos: 51.652344,4.5527577 + parent: 2 - proto: BoxFolderYellow entities: - uid: 50 @@ -10470,12 +11640,17 @@ entities: - type: Transform pos: 19.48426,-2.579442 parent: 2 -- proto: BoxHandcuff - entities: - - uid: 8434 + - uid: 14766 components: - type: Transform - pos: 40.562286,22.648638 + pos: 20.5,24.5 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 12242 + components: + - type: Transform + pos: 36.634296,28.185242 parent: 2 - proto: BoxHeadset entities: @@ -10498,10 +11673,10 @@ entities: - type: Transform pos: 6.475267,-3.36308 parent: 2 - - uid: 2151 + - uid: 403 components: - type: Transform - pos: 10.494422,21.679125 + pos: 11.492475,20.667053 parent: 2 - uid: 5733 components: @@ -10529,10 +11704,10 @@ entities: parent: 2 - proto: BoxSechud entities: - - uid: 8691 + - uid: 7681 components: - type: Transform - pos: 41.4396,22.65098 + pos: 36.641243,28.595247 parent: 2 - proto: BoxSterileMask entities: @@ -10550,10 +11725,10 @@ entities: parent: 2 - proto: BoxZiptie entities: - - uid: 8435 + - uid: 2131 components: - type: Transform - pos: 41.124786,22.492388 + pos: 36.363464,27.983711 parent: 2 - proto: BrbSign entities: @@ -10565,7 +11740,7 @@ entities: - uid: 12269 components: - type: Transform - pos: 17.562185,24.7009 + pos: 20.494055,24.776628 parent: 2 - proto: BriefcaseBrown entities: @@ -10632,7 +11807,63 @@ entities: - uid: 2382 components: - type: Transform - pos: 47.47656,-6.4677296 + pos: 46.49411,-7.5341444 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 2045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,33.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + pos: 31.77084,21.463516 + parent: 2 + - uid: 8429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.777786,17.53082 + parent: 2 + - uid: 10991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 6862 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 parent: 2 - proto: CableApcExtension entities: @@ -10641,11 +11872,6 @@ entities: - type: Transform pos: 11.5,2.5 parent: 2 - - uid: 51 - components: - - type: Transform - pos: 6.5,15.5 - parent: 2 - uid: 59 components: - type: Transform @@ -10656,16 +11882,66 @@ entities: - type: Transform pos: 9.5,-26.5 parent: 2 + - uid: 78 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 - uid: 92 components: - type: Transform pos: 19.5,-14.5 parent: 2 + - uid: 130 + components: + - type: Transform + pos: 55.5,49.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 55.5,50.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 2 - uid: 255 components: - type: Transform pos: 59.5,-3.5 parent: 2 + - uid: 349 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 - uid: 420 components: - type: Transform @@ -10676,6 +11952,16 @@ entities: - type: Transform pos: 20.5,-14.5 parent: 2 + - uid: 482 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 52.5,-11.5 + parent: 2 - uid: 675 components: - type: Transform @@ -10711,60 +11997,195 @@ entities: - type: Transform pos: 37.5,-42.5 parent: 2 + - uid: 953 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 2 - uid: 1009 components: - type: Transform pos: 11.5,-38.5 parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 19.5,-57.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 13.5,-56.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 25.5,-57.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 26.5,-57.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 - uid: 1173 components: - type: Transform pos: 19.5,-13.5 parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 - uid: 1194 components: - type: Transform - pos: -15.5,15.5 + pos: 19.5,24.5 parent: 2 - - uid: 1307 + - uid: 1208 components: - type: Transform - pos: -7.5,15.5 + pos: 18.5,24.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 9.5,24.5 parent: 2 - uid: 1323 components: - type: Transform - pos: -11.5,15.5 + pos: 6.5,16.5 parent: 2 - - uid: 1327 + - uid: 1699 components: - type: Transform - pos: -12.5,15.5 + pos: 52.5,-12.5 parent: 2 - - uid: 1328 + - uid: 1738 components: - type: Transform - pos: -13.5,15.5 + pos: 38.5,-12.5 parent: 2 - - uid: 1329 + - uid: 1739 components: - type: Transform - pos: -14.5,15.5 + pos: 49.5,-13.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: 41.5,31.5 parent: 2 - uid: 1940 components: - type: Transform pos: 45.5,-28.5 parent: 2 + - uid: 1946 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 13.5,-52.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 - uid: 2074 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 2135 + - uid: 2087 components: - type: Transform - pos: 12.5,18.5 + pos: 9.5,23.5 parent: 2 - uid: 2140 components: @@ -10776,6 +12197,51 @@ entities: - type: Transform pos: 13.5,18.5 parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 70.5,-12.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 2 - uid: 2389 components: - type: Transform @@ -10796,6 +12262,11 @@ entities: - type: Transform pos: 52.5,-9.5 parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 - uid: 2438 components: - type: Transform @@ -10806,6 +12277,31 @@ entities: - type: Transform pos: 45.5,-26.5 parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 24.5,-57.5 + parent: 2 - uid: 2610 components: - type: Transform @@ -10816,6 +12312,246 @@ entities: - type: Transform pos: 45.5,-27.5 parent: 2 + - uid: 2729 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 21.5,-57.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 13.5,-55.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 54.5,35.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 56.5,36.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 57.5,36.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 56.5,38.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 - uid: 3284 components: - type: Transform @@ -10841,15 +12577,25 @@ entities: - type: Transform pos: 45.5,-32.5 parent: 2 + - uid: 3319 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 - uid: 3404 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 3461 + - uid: 3428 components: - type: Transform - pos: -17.5,16.5 + pos: 69.5,29.5 parent: 2 - uid: 3515 components: @@ -10886,11 +12632,6 @@ entities: - type: Transform pos: 47.5,-29.5 parent: 2 - - uid: 4001 - components: - - type: Transform - pos: -9.5,15.5 - parent: 2 - uid: 4005 components: - type: Transform @@ -10906,16 +12647,16 @@ entities: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 4026 - components: - - type: Transform - pos: -8.5,15.5 - parent: 2 - uid: 4040 components: - type: Transform pos: 46.5,-25.5 parent: 2 + - uid: 4113 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 - uid: 4190 components: - type: Transform @@ -10951,6 +12692,11 @@ entities: - type: Transform pos: 47.5,-33.5 parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 - uid: 4294 components: - type: Transform @@ -10961,6 +12707,31 @@ entities: - type: Transform pos: 16.5,-39.5 parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 - uid: 4677 components: - type: Transform @@ -11216,6 +12987,11 @@ entities: - type: Transform pos: 11.5,-34.5 parent: 2 + - uid: 4745 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 - uid: 4746 components: - type: Transform @@ -11321,15 +13097,10 @@ entities: - type: Transform pos: 18.5,-24.5 parent: 2 - - uid: 4767 + - uid: 4791 components: - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 4827 - components: - - type: Transform - pos: -17.5,15.5 + pos: 8.5,16.5 parent: 2 - uid: 4882 components: @@ -11626,10 +13397,10 @@ entities: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 5105 + - uid: 5045 components: - type: Transform - pos: 38.5,-10.5 + pos: 5.5,40.5 parent: 2 - uid: 5121 components: @@ -11686,20 +13457,15 @@ entities: - type: Transform pos: 60.5,-3.5 parent: 2 - - uid: 5283 + - uid: 5287 components: - type: Transform - pos: -17.5,17.5 + pos: 9.5,16.5 parent: 2 - - uid: 5286 + - uid: 5297 components: - type: Transform - pos: -6.5,15.5 - parent: 2 - - uid: 5296 - components: - - type: Transform - pos: -10.5,15.5 + pos: 57.5,50.5 parent: 2 - uid: 5315 components: @@ -11796,16 +13562,6 @@ entities: - type: Transform pos: 17.5,-39.5 parent: 2 - - uid: 5580 - components: - - type: Transform - pos: 17.5,-40.5 - parent: 2 - - uid: 5581 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - uid: 5582 components: - type: Transform @@ -11976,6 +13732,36 @@ entities: - type: Transform pos: 8.5,-23.5 parent: 2 + - uid: 6024 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 - uid: 6460 components: - type: Transform @@ -12041,6 +13827,11 @@ entities: - type: Transform pos: 22.5,-17.5 parent: 2 + - uid: 6592 + components: + - type: Transform + pos: 29.5,-51.5 + parent: 2 - uid: 6687 components: - type: Transform @@ -12321,60 +14112,45 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 2 + - uid: 6781 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 29.5,-50.5 + parent: 2 - uid: 6829 components: - type: Transform - pos: -4.5,15.5 + pos: 29.5,-48.5 parent: 2 - - uid: 6830 + - uid: 6841 components: - type: Transform - pos: 3.5,15.5 - parent: 2 - - uid: 6831 - components: - - type: Transform - pos: -2.5,15.5 - parent: 2 - - uid: 6836 - components: - - type: Transform - pos: -0.5,15.5 - parent: 2 - - uid: 6837 - components: - - type: Transform - pos: -1.5,15.5 - parent: 2 - - uid: 6853 - components: - - type: Transform - pos: -3.5,15.5 + pos: -23.5,-13.5 parent: 2 - uid: 6855 components: - type: Transform - pos: -5.5,15.5 - parent: 2 - - uid: 6861 - components: - - type: Transform - pos: 8.5,17.5 - parent: 2 - - uid: 6862 - components: - - type: Transform - pos: 8.5,15.5 + pos: 29.5,-55.5 parent: 2 - uid: 6869 components: - type: Transform pos: 10.5,18.5 parent: 2 - - uid: 6870 + - uid: 6904 components: - type: Transform - pos: 9.5,18.5 + pos: 20.5,-57.5 parent: 2 - uid: 6920 components: @@ -12936,6 +14712,36 @@ entities: - type: Transform pos: 35.5,9.5 parent: 2 + - uid: 7237 + components: + - type: Transform + pos: 17.5,-57.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: 18.5,-57.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 2 - uid: 7273 components: - type: Transform @@ -12991,16 +14797,56 @@ entities: - type: Transform pos: 24.5,-27.5 parent: 2 - - uid: 7346 - components: - - type: Transform - pos: 8.5,18.5 - parent: 2 - uid: 7376 components: - type: Transform pos: 41.5,-24.5 parent: 2 + - uid: 7435 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 - uid: 7452 components: - type: Transform @@ -13016,116 +14862,21 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 7588 + - uid: 7551 components: - type: Transform - pos: -15.5,-15.5 + pos: -11.5,-0.5 parent: 2 - uid: 7589 components: - type: Transform - pos: -15.5,-14.5 - parent: 2 - - uid: 7590 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 2 - - uid: 7592 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 2 - - uid: 7593 - components: - - type: Transform - pos: -17.5,-13.5 - parent: 2 - - uid: 7594 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 2 - - uid: 7596 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 2 - - uid: 7597 - components: - - type: Transform - pos: -20.5,-13.5 - parent: 2 - - uid: 7598 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 2 - - uid: 7599 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 2 - - uid: 7600 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 7601 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - uid: 7602 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 2 - - uid: 7603 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - - uid: 7604 - components: - - type: Transform - pos: -9.5,-13.5 - parent: 2 - - uid: 7605 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 2 - - uid: 7606 - components: - - type: Transform - pos: -7.5,-13.5 + pos: -8.5,-0.5 parent: 2 - uid: 7607 components: - type: Transform pos: -6.5,-13.5 parent: 2 - - uid: 7608 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 2 - - uid: 7609 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 2 - - uid: 7610 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 2 - - uid: 7613 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - uid: 7614 components: - type: Transform @@ -13351,31 +15102,6 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 7661 - components: - - type: Transform - pos: 2.5,15.5 - parent: 2 - - uid: 7665 - components: - - type: Transform - pos: 0.5,15.5 - parent: 2 - - uid: 7673 - components: - - type: Transform - pos: 5.5,15.5 - parent: 2 - - uid: 7677 - components: - - type: Transform - pos: 8.5,16.5 - parent: 2 - - uid: 7680 - components: - - type: Transform - pos: 1.5,15.5 - parent: 2 - uid: 7682 components: - type: Transform @@ -13481,40 +15207,80 @@ entities: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 7714 + - uid: 7713 components: - type: Transform - pos: 7.5,15.5 + pos: -13.5,-0.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: -15.5,-0.5 parent: 2 - uid: 7823 components: - type: Transform pos: 11.5,-39.5 parent: 2 - - uid: 7885 + - uid: 7824 components: - type: Transform - pos: 4.5,15.5 + pos: -23.5,-10.5 parent: 2 - - uid: 7964 + - uid: 7841 components: - type: Transform - pos: 7.5,17.5 + pos: 4.5,26.5 parent: 2 - - uid: 7965 + - uid: 7876 components: - type: Transform - pos: 6.5,17.5 + pos: 15.5,36.5 parent: 2 - - uid: 7966 + - uid: 7888 components: - type: Transform - pos: 5.5,17.5 + pos: 13.5,-50.5 parent: 2 - - uid: 7967 + - uid: 7942 components: - type: Transform - pos: 5.5,18.5 + pos: -23.5,-12.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: 7.5,38.5 parent: 2 - uid: 8024 components: @@ -13536,31 +15302,6 @@ entities: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 8028 - components: - - type: Transform - pos: 16.5,23.5 - parent: 2 - - uid: 8029 - components: - - type: Transform - pos: 17.5,23.5 - parent: 2 - - uid: 8030 - components: - - type: Transform - pos: 18.5,23.5 - parent: 2 - - uid: 8031 - components: - - type: Transform - pos: 19.5,23.5 - parent: 2 - - uid: 8032 - components: - - type: Transform - pos: 19.5,22.5 - parent: 2 - uid: 8033 components: - type: Transform @@ -13616,26 +15357,11 @@ entities: - type: Transform pos: 22.5,24.5 parent: 2 - - uid: 8044 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - - uid: 8045 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - uid: 8046 components: - type: Transform pos: 14.5,25.5 parent: 2 - - uid: 8047 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - uid: 8048 components: - type: Transform @@ -13656,11 +15382,6 @@ entities: - type: Transform pos: 9.5,25.5 parent: 2 - - uid: 8052 - components: - - type: Transform - pos: 8.5,25.5 - parent: 2 - uid: 8053 components: - type: Transform @@ -13696,25 +15417,10 @@ entities: - type: Transform pos: 5.5,26.5 parent: 2 - - uid: 8060 - components: - - type: Transform - pos: 8.5,24.5 - parent: 2 - - uid: 8061 - components: - - type: Transform - pos: 8.5,23.5 - parent: 2 - uid: 8062 components: - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 8063 - components: - - type: Transform - pos: 8.5,21.5 + pos: 39.5,41.5 parent: 2 - uid: 8064 components: @@ -13731,11 +15437,6 @@ entities: - type: Transform pos: 12.5,22.5 parent: 2 - - uid: 8067 - components: - - type: Transform - pos: 12.5,21.5 - parent: 2 - uid: 8068 components: - type: Transform @@ -13766,20 +15467,10 @@ entities: - type: Transform pos: 12.5,28.5 parent: 2 - - uid: 8074 - components: - - type: Transform - pos: 12.5,29.5 - parent: 2 - uid: 8075 components: - type: Transform - pos: 12.5,30.5 - parent: 2 - - uid: 8076 - components: - - type: Transform - pos: 12.5,31.5 + pos: 4.5,24.5 parent: 2 - uid: 8077 components: @@ -13796,35 +15487,10 @@ entities: - type: Transform pos: 9.5,28.5 parent: 2 - - uid: 8080 - components: - - type: Transform - pos: 9.5,29.5 - parent: 2 - - uid: 8081 - components: - - type: Transform - pos: 9.5,30.5 - parent: 2 - uid: 8082 components: - type: Transform - pos: 9.5,31.5 - parent: 2 - - uid: 8083 - components: - - type: Transform - pos: 8.5,31.5 - parent: 2 - - uid: 8084 - components: - - type: Transform - pos: 7.5,31.5 - parent: 2 - - uid: 8085 - components: - - type: Transform - pos: 6.5,31.5 + pos: 13.5,-48.5 parent: 2 - uid: 8086 components: @@ -13901,61 +15567,11 @@ entities: - type: Transform pos: 22.5,27.5 parent: 2 - - uid: 8101 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - - uid: 8102 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 8103 - components: - - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 8104 - components: - - type: Transform - pos: 11.5,33.5 - parent: 2 - - uid: 8105 - components: - - type: Transform - pos: 11.5,34.5 - parent: 2 - - uid: 8106 - components: - - type: Transform - pos: 11.5,35.5 - parent: 2 - - uid: 8107 - components: - - type: Transform - pos: 11.5,36.5 - parent: 2 - - uid: 8108 - components: - - type: Transform - pos: 13.5,35.5 - parent: 2 - uid: 8109 components: - type: Transform pos: 13.5,36.5 parent: 2 - - uid: 8110 - components: - - type: Transform - pos: 13.5,37.5 - parent: 2 - - uid: 8111 - components: - - type: Transform - pos: 13.5,38.5 - parent: 2 - uid: 8112 components: - type: Transform @@ -14131,11 +15747,41 @@ entities: - type: Transform pos: 6.5,10.5 parent: 2 + - uid: 8164 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 2 - uid: 8178 components: - type: Transform pos: 11.5,-40.5 parent: 2 + - uid: 8189 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + pos: 13.5,-46.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 - uid: 8285 components: - type: Transform @@ -14151,105 +15797,40 @@ entities: - type: Transform pos: 63.5,48.5 parent: 2 - - uid: 8389 + - uid: 8358 components: - type: Transform - pos: 36.5,29.5 + pos: 37.5,18.5 parent: 2 - - uid: 8391 + - uid: 8385 components: - type: Transform - pos: 36.5,30.5 + pos: 35.5,28.5 parent: 2 - - uid: 8392 + - uid: 8386 components: - type: Transform - pos: 37.5,30.5 + pos: 35.5,24.5 parent: 2 - - uid: 8393 + - uid: 8387 components: - type: Transform - pos: 38.5,30.5 + pos: 35.5,25.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: 35.5,26.5 parent: 2 - uid: 8394 components: - type: Transform - pos: 40.5,30.5 - parent: 2 - - uid: 8395 - components: - - type: Transform - pos: 40.5,31.5 - parent: 2 - - uid: 8396 - components: - - type: Transform - pos: 39.5,30.5 - parent: 2 - - uid: 8397 - components: - - type: Transform - pos: 40.5,32.5 - parent: 2 - - uid: 8398 - components: - - type: Transform - pos: 40.5,33.5 - parent: 2 - - uid: 8399 - components: - - type: Transform - pos: 40.5,34.5 - parent: 2 - - uid: 8400 - components: - - type: Transform - pos: 39.5,34.5 - parent: 2 - - uid: 8401 - components: - - type: Transform - pos: 38.5,34.5 - parent: 2 - - uid: 8402 - components: - - type: Transform - pos: 37.5,34.5 - parent: 2 - - uid: 8403 - components: - - type: Transform - pos: 40.5,35.5 - parent: 2 - - uid: 8404 - components: - - type: Transform - pos: 41.5,35.5 - parent: 2 - - uid: 8405 - components: - - type: Transform - pos: 41.5,36.5 - parent: 2 - - uid: 8406 - components: - - type: Transform - pos: 41.5,32.5 + pos: 36.5,18.5 parent: 2 - uid: 8407 components: - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 8408 - components: - - type: Transform - pos: 42.5,31.5 - parent: 2 - - uid: 8409 - components: - - type: Transform - pos: 42.5,33.5 + pos: 59.5,36.5 parent: 2 - uid: 8448 components: @@ -14294,22 +15875,7 @@ entities: - uid: 8472 components: - type: Transform - pos: 37.5,25.5 - parent: 2 - - uid: 8473 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 8474 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8475 - components: - - type: Transform - pos: 34.5,25.5 + pos: 35.5,27.5 parent: 2 - uid: 8476 components: @@ -14346,11 +15912,6 @@ entities: - type: Transform pos: 31.5,29.5 parent: 2 - - uid: 8483 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - uid: 8484 components: - type: Transform @@ -14411,21 +15972,11 @@ entities: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 8496 - components: - - type: Transform - pos: 40.5,18.5 - parent: 2 - uid: 8497 components: - type: Transform pos: 39.5,18.5 parent: 2 - - uid: 8498 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - uid: 8499 components: - type: Transform @@ -14586,10 +16137,15 @@ entities: - type: Transform pos: 39.5,26.5 parent: 2 - - uid: 8703 + - uid: 8661 components: - type: Transform - pos: 47.5,28.5 + pos: 55.5,32.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: 56.5,37.5 parent: 2 - uid: 8704 components: @@ -14621,11 +16177,6 @@ entities: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 8713 - components: - - type: Transform - pos: 46.5,27.5 - parent: 2 - uid: 8714 components: - type: Transform @@ -14701,6 +16252,11 @@ entities: - type: Transform pos: 45.5,41.5 parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 - uid: 9131 components: - type: Transform @@ -14906,11 +16462,6 @@ entities: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 9175 - components: - - type: Transform - pos: 30.5,38.5 - parent: 2 - uid: 9176 components: - type: Transform @@ -14929,7 +16480,7 @@ entities: - uid: 9179 components: - type: Transform - pos: 30.5,34.5 + pos: 54.5,39.5 parent: 2 - uid: 9180 components: @@ -15161,11 +16712,6 @@ entities: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 9233 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - uid: 9234 components: - type: Transform @@ -15176,25 +16722,10 @@ entities: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 9236 - components: - - type: Transform - pos: 31.5,32.5 - parent: 2 - uid: 9237 components: - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 9238 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 9239 - components: - - type: Transform - pos: 34.5,32.5 + pos: 58.5,32.5 parent: 2 - uid: 9240 components: @@ -15211,11 +16742,6 @@ entities: - type: Transform pos: 34.5,35.5 parent: 2 - - uid: 9243 - components: - - type: Transform - pos: 34.5,36.5 - parent: 2 - uid: 9244 components: - type: Transform @@ -15406,16 +16932,6 @@ entities: - type: Transform pos: 49.5,48.5 parent: 2 - - uid: 9296 - components: - - type: Transform - pos: 56.5,49.5 - parent: 2 - - uid: 9297 - components: - - type: Transform - pos: 56.5,50.5 - parent: 2 - uid: 9298 components: - type: Transform @@ -15571,16 +17087,6 @@ entities: - type: Transform pos: 69.5,28.5 parent: 2 - - uid: 9333 - components: - - type: Transform - pos: 69.5,29.5 - parent: 2 - - uid: 9334 - components: - - type: Transform - pos: 69.5,30.5 - parent: 2 - uid: 9335 components: - type: Transform @@ -15646,6 +17152,11 @@ entities: - type: Transform pos: 70.5,39.5 parent: 2 + - uid: 9454 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 - uid: 9694 components: - type: Transform @@ -15711,21 +17222,6 @@ entities: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 9707 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 2 - - uid: 9708 - components: - - type: Transform - pos: 52.5,-12.5 - parent: 2 - - uid: 9709 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 2 - uid: 9710 components: - type: Transform @@ -16211,21 +17707,6 @@ entities: - type: Transform pos: 50.5,-18.5 parent: 2 - - uid: 9956 - components: - - type: Transform - pos: 51.5,-18.5 - parent: 2 - - uid: 9957 - components: - - type: Transform - pos: 52.5,-18.5 - parent: 2 - - uid: 9958 - components: - - type: Transform - pos: 53.5,-18.5 - parent: 2 - uid: 9959 components: - type: Transform @@ -16646,6 +18127,11 @@ entities: - type: Transform pos: 61.5,-2.5 parent: 2 + - uid: 10084 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 - uid: 10103 components: - type: Transform @@ -17336,6 +18822,11 @@ entities: - type: Transform pos: 41.5,6.5 parent: 2 + - uid: 10928 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 - uid: 10932 components: - type: Transform @@ -18021,6 +19512,16 @@ entities: - type: Transform pos: 61.5,0.5 parent: 2 + - uid: 11473 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 11632 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 - uid: 11750 components: - type: Transform @@ -18621,6 +20122,21 @@ entities: - type: Transform pos: 70.5,-17.5 parent: 2 + - uid: 12229 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 - uid: 12500 components: - type: Transform @@ -18911,6 +20427,36 @@ entities: - type: Transform pos: 114.5,-16.5 parent: 2 + - uid: 12666 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 - uid: 12949 components: - type: Transform @@ -19051,6 +20597,106 @@ entities: - type: Transform pos: 43.5,-48.5 parent: 2 + - uid: 13140 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 13254 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 13262 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 - uid: 13438 components: - type: Transform @@ -19066,305 +20712,90 @@ entities: - type: Transform pos: 10.5,-42.5 parent: 2 - - uid: 13530 + - uid: 13509 components: - type: Transform - pos: 55.5,37.5 + pos: 54.5,32.5 parent: 2 - - uid: 13531 + - uid: 13513 components: - type: Transform - pos: 54.5,37.5 + pos: 57.5,40.5 parent: 2 - - uid: 13532 + - uid: 13516 components: - type: Transform - pos: 54.5,36.5 + pos: 58.5,40.5 parent: 2 - - uid: 13533 + - uid: 13528 components: - type: Transform - pos: 54.5,35.5 - parent: 2 - - uid: 13534 - components: - - type: Transform - pos: 54.5,34.5 - parent: 2 - - uid: 13535 - components: - - type: Transform - pos: 55.5,34.5 - parent: 2 - - uid: 13536 - components: - - type: Transform - pos: 56.5,34.5 - parent: 2 - - uid: 13537 - components: - - type: Transform - pos: 57.5,34.5 - parent: 2 - - uid: 13538 - components: - - type: Transform - pos: 58.5,34.5 - parent: 2 - - uid: 13539 - components: - - type: Transform - pos: 56.5,35.5 - parent: 2 - - uid: 13543 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 13544 - components: - - type: Transform - pos: 56.5,29.5 - parent: 2 - - uid: 13545 - components: - - type: Transform - pos: 56.5,28.5 - parent: 2 - - uid: 13546 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - - uid: 13547 - components: - - type: Transform - pos: 54.5,30.5 - parent: 2 - - uid: 13548 - components: - - type: Transform - pos: 53.5,30.5 - parent: 2 - - uid: 13549 - components: - - type: Transform - pos: 52.5,30.5 - parent: 2 - - uid: 13550 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 13551 - components: - - type: Transform - pos: 58.5,30.5 - parent: 2 - - uid: 13552 - components: - - type: Transform - pos: 59.5,30.5 - parent: 2 - - uid: 13553 - components: - - type: Transform - pos: 60.5,30.5 - parent: 2 - - uid: 13554 - components: - - type: Transform - pos: 59.5,34.5 - parent: 2 - - uid: 13555 - components: - - type: Transform - pos: 60.5,34.5 - parent: 2 - - uid: 13556 - components: - - type: Transform - pos: 61.5,34.5 - parent: 2 - - uid: 13557 - components: - - type: Transform - pos: 62.5,34.5 - parent: 2 - - uid: 13558 - components: - - type: Transform - pos: 62.5,33.5 - parent: 2 - - uid: 13559 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - - uid: 13560 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - - uid: 13561 - components: - - type: Transform - pos: 62.5,36.5 - parent: 2 - - uid: 13562 - components: - - type: Transform - pos: 62.5,37.5 - parent: 2 - - uid: 13563 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - - uid: 13564 - components: - - type: Transform - pos: 62.5,39.5 - parent: 2 - - uid: 13565 - components: - - type: Transform - pos: 61.5,39.5 - parent: 2 - - uid: 13566 - components: - - type: Transform - pos: 61.5,40.5 - parent: 2 - - uid: 13567 - components: - - type: Transform - pos: 60.5,40.5 - parent: 2 - - uid: 13568 - components: - - type: Transform - pos: 59.5,40.5 - parent: 2 - - uid: 13569 - components: - - type: Transform - pos: 59.5,41.5 + pos: 57.5,32.5 parent: 2 - uid: 13570 components: - type: Transform - pos: 58.5,41.5 + pos: 47.5,28.5 parent: 2 - - uid: 13571 + - uid: 13669 components: - type: Transform - pos: 57.5,41.5 + pos: -23.5,-20.5 parent: 2 - - uid: 13572 + - uid: 13670 components: - type: Transform - pos: 56.5,41.5 + pos: -23.5,-21.5 parent: 2 - - uid: 13573 + - uid: 13671 components: - type: Transform - pos: 55.5,41.5 + pos: -23.5,-22.5 parent: 2 - - uid: 13574 + - uid: 13672 components: - type: Transform - pos: 54.5,41.5 + pos: -23.5,-19.5 parent: 2 - - uid: 13575 + - uid: 13673 components: - type: Transform - pos: 53.5,41.5 + pos: -24.5,-22.5 parent: 2 - - uid: 13576 + - uid: 13674 components: - type: Transform - pos: 53.5,40.5 + pos: -25.5,-22.5 parent: 2 - - uid: 13577 + - uid: 13675 components: - type: Transform - pos: 52.5,40.5 + pos: -26.5,-22.5 parent: 2 - - uid: 13578 + - uid: 13676 components: - type: Transform - pos: 51.5,40.5 + pos: -24.5,-20.5 parent: 2 - - uid: 13579 + - uid: 13677 components: - type: Transform - pos: 51.5,39.5 + pos: -25.5,-20.5 parent: 2 - - uid: 13580 + - uid: 13678 components: - type: Transform - pos: 50.5,39.5 + pos: -26.5,-20.5 parent: 2 - - uid: 13581 + - uid: 13706 components: - type: Transform - pos: 50.5,38.5 + pos: 3.5,24.5 parent: 2 - - uid: 13582 + - uid: 13707 components: - type: Transform - pos: 50.5,37.5 - parent: 2 - - uid: 13583 - components: - - type: Transform - pos: 50.5,36.5 - parent: 2 - - uid: 13584 - components: - - type: Transform - pos: 50.5,35.5 - parent: 2 - - uid: 13585 - components: - - type: Transform - pos: 50.5,34.5 - parent: 2 - - uid: 13586 - components: - - type: Transform - pos: 50.5,33.5 - parent: 2 - - uid: 13587 - components: - - type: Transform - pos: 50.5,32.5 - parent: 2 - - uid: 13588 - components: - - type: Transform - pos: 53.5,34.5 - parent: 2 - - uid: 13589 - components: - - type: Transform - pos: 52.5,34.5 - parent: 2 - - uid: 13590 - components: - - type: Transform - pos: 51.5,34.5 - parent: 2 - - uid: 13612 - components: - - type: Transform - pos: 58.5,31.5 - parent: 2 - - uid: 13613 - components: - - type: Transform - pos: 58.5,32.5 + pos: 13.5,-49.5 parent: 2 - uid: 13711 components: @@ -19386,6 +20817,716 @@ entities: - type: Transform pos: 6.5,-19.5 parent: 2 + - uid: 13784 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 13860 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 13863 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 13864 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 13872 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 14069 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 14070 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + pos: 72.5,21.5 + parent: 2 + - uid: 14121 + components: + - type: Transform + pos: 72.5,24.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + pos: 74.5,23.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + pos: 72.5,22.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - uid: 14138 + components: + - type: Transform + pos: 73.5,20.5 + parent: 2 + - uid: 14139 + components: + - type: Transform + pos: 74.5,20.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + pos: 69.5,21.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + pos: 69.5,22.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: 72.5,23.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + pos: 73.5,23.5 + parent: 2 + - uid: 14444 + components: + - type: Transform + pos: 80.5,32.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: 80.5,33.5 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: 81.5,33.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: 82.5,33.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + pos: 80.5,31.5 + parent: 2 + - uid: 14449 + components: + - type: Transform + pos: 80.5,30.5 + parent: 2 + - uid: 14450 + components: + - type: Transform + pos: 81.5,30.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + pos: 82.5,30.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 14453 + components: + - type: Transform + pos: 81.5,28.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + pos: 81.5,27.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + pos: 88.5,28.5 + parent: 2 + - uid: 14456 + components: + - type: Transform + pos: 88.5,29.5 + parent: 2 + - uid: 14457 + components: + - type: Transform + pos: 88.5,30.5 + parent: 2 + - uid: 14458 + components: + - type: Transform + pos: 87.5,30.5 + parent: 2 + - uid: 14459 + components: + - type: Transform + pos: 86.5,30.5 + parent: 2 + - uid: 14460 + components: + - type: Transform + pos: 85.5,30.5 + parent: 2 + - uid: 14461 + components: + - type: Transform + pos: 84.5,30.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + pos: 89.5,30.5 + parent: 2 + - uid: 14463 + components: + - type: Transform + pos: 90.5,30.5 + parent: 2 + - uid: 14464 + components: + - type: Transform + pos: 91.5,30.5 + parent: 2 + - uid: 14465 + components: + - type: Transform + pos: 92.5,30.5 + parent: 2 + - uid: 14466 + components: + - type: Transform + pos: 92.5,31.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + pos: 92.5,32.5 + parent: 2 + - uid: 14468 + components: + - type: Transform + pos: 93.5,32.5 + parent: 2 + - uid: 14469 + components: + - type: Transform + pos: 94.5,32.5 + parent: 2 + - uid: 14470 + components: + - type: Transform + pos: 95.5,32.5 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: 96.5,32.5 + parent: 2 + - uid: 14472 + components: + - type: Transform + pos: 96.5,31.5 + parent: 2 + - uid: 14473 + components: + - type: Transform + pos: 92.5,29.5 + parent: 2 + - uid: 14474 + components: + - type: Transform + pos: 92.5,28.5 + parent: 2 + - uid: 14475 + components: + - type: Transform + pos: 93.5,28.5 + parent: 2 + - uid: 14476 + components: + - type: Transform + pos: 94.5,28.5 + parent: 2 + - uid: 14477 + components: + - type: Transform + pos: 95.5,28.5 + parent: 2 + - uid: 14478 + components: + - type: Transform + pos: 96.5,28.5 + parent: 2 + - uid: 14479 + components: + - type: Transform + pos: 96.5,29.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 14634 + components: + - type: Transform + pos: 79.5,33.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + pos: 82.5,34.5 + parent: 2 + - uid: 14636 + components: + - type: Transform + pos: 81.5,26.5 + parent: 2 + - uid: 14637 + components: + - type: Transform + pos: 81.5,25.5 + parent: 2 + - uid: 14638 + components: + - type: Transform + pos: 81.5,24.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 14681 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 14682 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 14683 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 14684 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 14692 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 14693 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 14694 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 14695 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 14696 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 14699 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 14700 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 14718 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 14719 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - uid: 14720 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 14721 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 14722 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 14723 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 14728 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 14730 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 14732 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 14733 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 14744 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 14907 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 14931 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 14932 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 14936 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 14937 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 14939 + components: + - type: Transform + pos: 41.5,41.5 + parent: 2 + - uid: 14940 + components: + - type: Transform + pos: 42.5,41.5 + parent: 2 + - uid: 14941 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + pos: 44.5,41.5 + parent: 2 + - uid: 14943 + components: + - type: Transform + pos: 40.5,41.5 + parent: 2 + - uid: 15008 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 - proto: CableApcStack entities: - uid: 5386 @@ -19422,11 +21563,6 @@ entities: - type: Transform pos: 13.5,-12.5 parent: 2 - - uid: 29 - components: - - type: Transform - pos: 12.5,33.5 - parent: 2 - uid: 61 components: - type: Transform @@ -19452,20 +21588,15 @@ entities: - type: Transform pos: 13.5,-11.5 parent: 2 - - uid: 318 + - uid: 72 components: - type: Transform - pos: 64.5,15.5 + pos: 13.5,36.5 parent: 2 - - uid: 319 + - uid: 75 components: - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 591 - components: - - type: Transform - pos: 60.5,19.5 + pos: 13.5,35.5 parent: 2 - uid: 603 components: @@ -19477,11 +21608,6 @@ entities: - type: Transform pos: 60.5,18.5 parent: 2 - - uid: 669 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - uid: 803 components: - type: Transform @@ -19492,11 +21618,6 @@ entities: - type: Transform pos: 24.5,-36.5 parent: 2 - - uid: 829 - components: - - type: Transform - pos: 19.5,-39.5 - parent: 2 - uid: 830 components: - type: Transform @@ -19507,41 +21628,6 @@ entities: - type: Transform pos: 23.5,-36.5 parent: 2 - - uid: 1026 - components: - - type: Transform - pos: 25.5,-42.5 - parent: 2 - - uid: 1027 - components: - - type: Transform - pos: 25.5,-41.5 - parent: 2 - - uid: 1223 - components: - - type: Transform - pos: 62.5,15.5 - parent: 2 - - uid: 1230 - components: - - type: Transform - pos: 61.5,15.5 - parent: 2 - - uid: 1231 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - uid: 1256 - components: - - type: Transform - pos: 64.5,18.5 - parent: 2 - - uid: 1275 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - uid: 1469 components: - type: Transform @@ -19552,26 +21638,136 @@ entities: - type: Transform pos: 24.5,-28.5 parent: 2 + - uid: 2019 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 - uid: 2332 components: - type: Transform pos: 43.5,41.5 parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 - uid: 2387 components: - type: Transform pos: 25.5,-28.5 parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: 70.5,-12.5 + parent: 2 - uid: 2711 components: - type: Transform pos: 117.5,-15.5 parent: 2 + - uid: 2831 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 - uid: 2832 components: - type: Transform pos: 23.5,-28.5 parent: 2 + - uid: 2891 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 - uid: 2988 components: - type: Transform @@ -19587,71 +21783,46 @@ entities: - type: Transform pos: 22.5,9.5 parent: 2 + - uid: 3163 + components: + - type: Transform + pos: 67.5,19.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 - uid: 3980 components: - type: Transform pos: 23.5,-41.5 parent: 2 - - uid: 4020 - components: - - type: Transform - pos: 26.5,-42.5 - parent: 2 - uid: 4123 components: - type: Transform pos: 64.5,17.5 parent: 2 - - uid: 4127 - components: - - type: Transform - pos: 60.5,21.5 - parent: 2 - - uid: 4128 - components: - - type: Transform - pos: 60.5,22.5 - parent: 2 - uid: 4129 components: - type: Transform pos: 60.5,25.5 parent: 2 - - uid: 4130 - components: - - type: Transform - pos: 60.5,24.5 - parent: 2 - - uid: 4131 - components: - - type: Transform - pos: 60.5,23.5 - parent: 2 - - uid: 4132 - components: - - type: Transform - pos: 59.5,25.5 - parent: 2 - - uid: 4133 - components: - - type: Transform - pos: 58.5,25.5 - parent: 2 - - uid: 4134 - components: - - type: Transform - pos: 57.5,25.5 - parent: 2 - - uid: 4135 - components: - - type: Transform - pos: 56.5,25.5 - parent: 2 - - uid: 4188 - components: - - type: Transform - pos: 64.5,19.5 - parent: 2 - uid: 4213 components: - type: Transform @@ -19670,43 +21841,18 @@ entities: - uid: 4307 components: - type: Transform - pos: 17.5,-40.5 + pos: 15.5,-38.5 parent: 2 - uid: 4308 components: - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 4335 - components: - - type: Transform - pos: 17.5,-39.5 - parent: 2 - - uid: 4336 - components: - - type: Transform - pos: 18.5,-39.5 + pos: 17.5,-37.5 parent: 2 - uid: 4337 components: - type: Transform pos: 23.5,-42.5 parent: 2 - - uid: 4504 - components: - - type: Transform - pos: 25.5,-40.5 - parent: 2 - - uid: 4505 - components: - - type: Transform - pos: 25.5,-39.5 - parent: 2 - - uid: 4506 - components: - - type: Transform - pos: 24.5,-39.5 - parent: 2 - uid: 4507 components: - type: Transform @@ -19757,21 +21903,6 @@ entities: - type: Transform pos: 19.5,-42.5 parent: 2 - - uid: 4517 - components: - - type: Transform - pos: 19.5,-40.5 - parent: 2 - - uid: 4518 - components: - - type: Transform - pos: 17.5,-42.5 - parent: 2 - - uid: 4519 - components: - - type: Transform - pos: 16.5,-42.5 - parent: 2 - uid: 4520 components: - type: Transform @@ -19917,16 +22048,6 @@ entities: - type: Transform pos: 26.5,-28.5 parent: 2 - - uid: 4568 - components: - - type: Transform - pos: 64.5,16.5 - parent: 2 - - uid: 4573 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - uid: 4585 components: - type: Transform @@ -20067,11 +22188,6 @@ entities: - type: Transform pos: 18.5,-35.5 parent: 2 - - uid: 4791 - components: - - type: Transform - pos: 18.5,-34.5 - parent: 2 - uid: 4792 components: - type: Transform @@ -20437,15 +22553,15 @@ entities: - type: Transform pos: 41.5,41.5 parent: 2 - - uid: 5421 + - uid: 5726 components: - type: Transform - pos: 14.5,33.5 + pos: 50.5,-19.5 parent: 2 - - uid: 5743 + - uid: 5745 components: - type: Transform - pos: 12.5,34.5 + pos: 50.5,-18.5 parent: 2 - uid: 5873 components: @@ -20882,11 +22998,6 @@ entities: - type: Transform pos: 40.5,-19.5 parent: 2 - - uid: 6003 - components: - - type: Transform - pos: 41.5,-19.5 - parent: 2 - uid: 6004 components: - type: Transform @@ -20932,17 +23043,7 @@ entities: - type: Transform pos: 49.5,-18.5 parent: 2 - - uid: 6024 - components: - - type: Transform - pos: 50.5,-18.5 - parent: 2 - uid: 6028 - components: - - type: Transform - pos: 51.5,-18.5 - parent: 2 - - uid: 6029 components: - type: Transform pos: 52.5,-18.5 @@ -20987,31 +23088,6 @@ entities: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 6038 - components: - - type: Transform - pos: 53.5,-18.5 - parent: 2 - - uid: 6039 - components: - - type: Transform - pos: 54.5,-18.5 - parent: 2 - - uid: 6040 - components: - - type: Transform - pos: 55.5,-18.5 - parent: 2 - - uid: 6041 - components: - - type: Transform - pos: 56.5,-18.5 - parent: 2 - - uid: 6042 - components: - - type: Transform - pos: 57.5,-18.5 - parent: 2 - uid: 6044 components: - type: Transform @@ -21117,11 +23193,6 @@ entities: - type: Transform pos: 71.5,-13.5 parent: 2 - - uid: 6066 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 - uid: 6067 components: - type: Transform @@ -21322,11 +23393,6 @@ entities: - type: Transform pos: 82.5,4.5 parent: 2 - - uid: 6139 - components: - - type: Transform - pos: 66.5,19.5 - parent: 2 - uid: 6141 components: - type: Transform @@ -21527,11 +23593,6 @@ entities: - type: Transform pos: 67.5,18.5 parent: 2 - - uid: 6184 - components: - - type: Transform - pos: 67.5,19.5 - parent: 2 - uid: 6185 components: - type: Transform @@ -22162,91 +24223,11 @@ entities: - type: Transform pos: 44.5,41.5 parent: 2 - - uid: 6324 - components: - - type: Transform - pos: 44.5,40.5 - parent: 2 - - uid: 6325 - components: - - type: Transform - pos: 44.5,39.5 - parent: 2 - uid: 6326 components: - type: Transform pos: 45.5,39.5 parent: 2 - - uid: 6327 - components: - - type: Transform - pos: 45.5,38.5 - parent: 2 - - uid: 6328 - components: - - type: Transform - pos: 45.5,37.5 - parent: 2 - - uid: 6329 - components: - - type: Transform - pos: 45.5,36.5 - parent: 2 - - uid: 6330 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - - uid: 6331 - components: - - type: Transform - pos: 45.5,34.5 - parent: 2 - - uid: 6332 - components: - - type: Transform - pos: 45.5,33.5 - parent: 2 - - uid: 6333 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 6334 - components: - - type: Transform - pos: 45.5,31.5 - parent: 2 - - uid: 6335 - components: - - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 6336 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 6337 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 6338 - components: - - type: Transform - pos: 44.5,28.5 - parent: 2 - - uid: 6339 - components: - - type: Transform - pos: 43.5,28.5 - parent: 2 - - uid: 6340 - components: - - type: Transform - pos: 46.5,28.5 - parent: 2 - uid: 6341 components: - type: Transform @@ -22757,11 +24738,6 @@ entities: - type: Transform pos: 22.5,-14.5 parent: 2 - - uid: 6767 - components: - - type: Transform - pos: 15.5,-42.5 - parent: 2 - uid: 6897 components: - type: Transform @@ -22872,36 +24848,6 @@ entities: - type: Transform pos: 11.5,18.5 parent: 2 - - uid: 7167 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 7168 - components: - - type: Transform - pos: 15.5,33.5 - parent: 2 - - uid: 7169 - components: - - type: Transform - pos: 15.5,32.5 - parent: 2 - - uid: 7170 - components: - - type: Transform - pos: 15.5,31.5 - parent: 2 - - uid: 7171 - components: - - type: Transform - pos: 15.5,30.5 - parent: 2 - - uid: 7172 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 7173 components: - type: Transform @@ -23122,20 +25068,35 @@ entities: - type: Transform pos: 14.5,28.5 parent: 2 - - uid: 8304 + - uid: 7782 components: - type: Transform - pos: 43.5,27.5 + pos: 8.5,15.5 parent: 2 - - uid: 8446 + - uid: 7967 components: - type: Transform - pos: 16.5,-36.5 + pos: 13.5,-41.5 parent: 2 - - uid: 8447 + - uid: 7968 components: - type: Transform - pos: 16.5,-35.5 + pos: 16.5,-41.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + pos: 8.5,16.5 parent: 2 - uid: 8818 components: @@ -23362,26 +25323,6 @@ entities: - type: Transform pos: 34.5,33.5 parent: 2 - - uid: 9454 - components: - - type: Transform - pos: 34.5,32.5 - parent: 2 - - uid: 9455 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 9456 - components: - - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 9457 - components: - - type: Transform - pos: 31.5,32.5 - parent: 2 - uid: 9458 components: - type: Transform @@ -23397,11 +25338,6 @@ entities: - type: Transform pos: 28.5,32.5 parent: 2 - - uid: 9461 - components: - - type: Transform - pos: 14.5,36.5 - parent: 2 - uid: 9462 components: - type: Transform @@ -23847,10 +25783,10 @@ entities: - type: Transform pos: 27.5,13.5 parent: 2 - - uid: 12296 + - uid: 11811 components: - type: Transform - pos: 65.5,19.5 + pos: 10.5,16.5 parent: 2 - uid: 12596 components: @@ -24102,6 +26038,21 @@ entities: - type: Transform pos: 112.5,-15.5 parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 - uid: 12807 components: - type: Transform @@ -24237,11 +26188,6 @@ entities: - type: Transform pos: 40.5,-46.5 parent: 2 - - uid: 13156 - components: - - type: Transform - pos: 17.5,-34.5 - parent: 2 - uid: 13157 components: - type: Transform @@ -24277,11 +26223,6 @@ entities: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 13186 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 2 - uid: 13187 components: - type: Transform @@ -24492,100 +26433,85 @@ entities: - type: Transform pos: 13.5,-52.5 parent: 2 - - uid: 13497 + - uid: 13689 components: - type: Transform - pos: 56.5,26.5 + pos: 9.5,16.5 parent: 2 - - uid: 13498 + - uid: 13693 components: - type: Transform - pos: 56.5,27.5 + pos: 16.5,-38.5 parent: 2 - - uid: 13499 + - uid: 14396 components: - type: Transform - pos: 56.5,28.5 + pos: 79.5,33.5 parent: 2 - - uid: 13500 + - uid: 14397 components: - type: Transform - pos: 56.5,30.5 + pos: 79.5,34.5 parent: 2 - - uid: 13501 + - uid: 14398 components: - type: Transform - pos: 56.5,31.5 + pos: 80.5,34.5 parent: 2 - - uid: 13502 + - uid: 14582 components: - type: Transform - pos: 56.5,32.5 + pos: 45.5,41.5 parent: 2 - - uid: 13503 + - uid: 14583 components: - type: Transform - pos: 56.5,33.5 + pos: 45.5,40.5 parent: 2 - - uid: 13504 + - uid: 14727 components: - type: Transform - pos: 56.5,34.5 + pos: 41.5,-19.5 parent: 2 - - uid: 13505 + - uid: 14929 components: - type: Transform - pos: 56.5,29.5 + pos: 37.5,33.5 parent: 2 - - uid: 13506 + - uid: 14930 components: - type: Transform - pos: 55.5,34.5 + pos: 37.5,34.5 parent: 2 - - uid: 13507 + - uid: 15021 components: - type: Transform - pos: 54.5,34.5 + pos: 51.5,-19.5 parent: 2 - - uid: 13508 + - uid: 15022 components: - type: Transform - pos: 54.5,35.5 + pos: 55.5,-19.5 parent: 2 - - uid: 13509 + - uid: 15023 components: - type: Transform - pos: 54.5,36.5 + pos: 54.5,-19.5 parent: 2 - - uid: 13510 + - uid: 15024 components: - type: Transform - pos: 54.5,37.5 + pos: 56.5,-19.5 parent: 2 - - uid: 13511 + - uid: 15025 components: - type: Transform - pos: 54.5,38.5 + pos: 53.5,-19.5 parent: 2 - - uid: 13512 + - uid: 15026 components: - type: Transform - pos: 55.5,38.5 - parent: 2 - - uid: 13513 - components: - - type: Transform - pos: 56.5,38.5 - parent: 2 - - uid: 13514 - components: - - type: Transform - pos: 57.5,38.5 - parent: 2 - - uid: 13515 - components: - - type: Transform - pos: 57.5,37.5 + pos: 52.5,-19.5 parent: 2 - proto: CableHVStack entities: @@ -24612,6 +26538,21 @@ entities: parent: 2 - proto: CableMV entities: + - uid: 12 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 - uid: 57 components: - type: Transform @@ -24622,16 +26563,86 @@ entities: - type: Transform pos: 8.5,-26.5 parent: 2 + - uid: 93 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 - uid: 769 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 850 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - uid: 1028 components: - type: Transform @@ -24657,11 +26668,141 @@ entities: - type: Transform pos: 4.5,-31.5 parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 - uid: 1555 components: - type: Transform pos: 41.5,-0.5 parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 70.5,-12.5 + parent: 2 - uid: 2688 components: - type: Transform @@ -24682,11 +26823,61 @@ entities: - type: Transform pos: 22.5,5.5 parent: 2 + - uid: 3131 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 - uid: 3403 components: - type: Transform pos: 22.5,8.5 parent: 2 + - uid: 3409 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 - uid: 3486 components: - type: Transform @@ -24707,10 +26898,15 @@ entities: - type: Transform pos: 49.5,21.5 parent: 2 - - uid: 4177 + - uid: 4020 components: - type: Transform - pos: 37.5,-10.5 + pos: 13.5,19.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 13.5,20.5 parent: 2 - uid: 4182 components: @@ -24722,6 +26918,21 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 2 + - uid: 4349 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 - uid: 4605 components: - type: Transform @@ -24852,26 +27063,6 @@ entities: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 4633 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 2 - - uid: 4634 - components: - - type: Transform - pos: 21.5,-36.5 - parent: 2 - - uid: 4635 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 2 - - uid: 4636 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - uid: 4641 components: - type: Transform @@ -25067,6 +27258,11 @@ entities: - type: Transform pos: 3.5,-27.5 parent: 2 + - uid: 5116 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 - uid: 5185 components: - type: Transform @@ -25077,6 +27273,11 @@ entities: - type: Transform pos: 62.5,-6.5 parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 - uid: 5578 components: - type: Transform @@ -25092,6 +27293,21 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 2 + - uid: 6039 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 - uid: 6455 components: - type: Transform @@ -25117,11 +27333,26 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 2 + - uid: 6572 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 2 - uid: 6766 components: - type: Transform pos: 14.5,-41.5 parent: 2 + - uid: 6767 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 - uid: 6768 components: - type: Transform @@ -25152,6 +27383,16 @@ entities: - type: Transform pos: 13.5,-46.5 parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 - uid: 6940 components: - type: Transform @@ -25537,26 +27778,6 @@ entities: - type: Transform pos: 29.5,10.5 parent: 2 - - uid: 7217 - components: - - type: Transform - pos: 12.5,34.5 - parent: 2 - - uid: 7218 - components: - - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 7219 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 7220 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - uid: 7221 components: - type: Transform @@ -25572,11 +27793,6 @@ entities: - type: Transform pos: 14.5,35.5 parent: 2 - - uid: 7224 - components: - - type: Transform - pos: 13.5,35.5 - parent: 2 - uid: 7225 components: - type: Transform @@ -25637,91 +27853,11 @@ entities: - type: Transform pos: 13.5,23.5 parent: 2 - - uid: 7237 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 - - uid: 7238 - components: - - type: Transform - pos: 15.5,23.5 - parent: 2 - - uid: 7239 - components: - - type: Transform - pos: 16.5,23.5 - parent: 2 - - uid: 7240 - components: - - type: Transform - pos: 14.5,25.5 - parent: 2 - - uid: 7241 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - - uid: 7242 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - uid: 7243 components: - type: Transform pos: 10.5,18.5 parent: 2 - - uid: 7244 - components: - - type: Transform - pos: 9.5,18.5 - parent: 2 - - uid: 7245 - components: - - type: Transform - pos: 8.5,18.5 - parent: 2 - - uid: 7246 - components: - - type: Transform - pos: 8.5,19.5 - parent: 2 - - uid: 7247 - components: - - type: Transform - pos: 8.5,20.5 - parent: 2 - - uid: 7248 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - - uid: 7249 - components: - - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 7250 - components: - - type: Transform - pos: 9.5,22.5 - parent: 2 - - uid: 7251 - components: - - type: Transform - pos: 10.5,22.5 - parent: 2 - - uid: 7252 - components: - - type: Transform - pos: 11.5,22.5 - parent: 2 - - uid: 7253 - components: - - type: Transform - pos: 12.5,22.5 - parent: 2 - uid: 7254 components: - type: Transform @@ -25762,21 +27898,6 @@ entities: - type: Transform pos: 12.5,18.5 parent: 2 - - uid: 7262 - components: - - type: Transform - pos: 14.5,18.5 - parent: 2 - - uid: 7263 - components: - - type: Transform - pos: 14.5,19.5 - parent: 2 - - uid: 7264 - components: - - type: Transform - pos: 14.5,20.5 - parent: 2 - uid: 7265 components: - type: Transform @@ -25827,11 +27948,6 @@ entities: - type: Transform pos: 1.5,-9.5 parent: 2 - - uid: 7483 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - uid: 7484 components: - type: Transform @@ -25927,16 +28043,6 @@ entities: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 7503 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 2 - - uid: 7504 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 2 - uid: 7505 components: - type: Transform @@ -25947,11 +28053,6 @@ entities: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 7507 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - uid: 7508 components: - type: Transform @@ -26007,125 +28108,70 @@ entities: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 7519 + - uid: 7594 components: - type: Transform - pos: -5.5,-6.5 + pos: 16.5,21.5 parent: 2 - - uid: 7520 + - uid: 7596 components: - type: Transform - pos: -5.5,-5.5 + pos: -24.5,-18.5 parent: 2 - - uid: 7521 + - uid: 7672 components: - type: Transform - pos: -5.5,-4.5 + pos: 18.5,19.5 parent: 2 - - uid: 7522 + - uid: 7849 components: - type: Transform - pos: -5.5,-3.5 + pos: 32.5,36.5 parent: 2 - - uid: 7523 + - uid: 7891 components: - type: Transform - pos: -5.5,-9.5 + pos: 15.5,-38.5 parent: 2 - - uid: 7524 + - uid: 7937 components: - type: Transform - pos: -5.5,-8.5 + pos: 40.5,20.5 parent: 2 - - uid: 7525 + - uid: 7939 components: - type: Transform - pos: -5.5,-10.5 + pos: 41.5,20.5 parent: 2 - - uid: 7531 + - uid: 7947 components: - type: Transform - pos: -5.5,-11.5 + pos: 40.5,29.5 parent: 2 - - uid: 7532 + - uid: 7953 components: - type: Transform - pos: -5.5,-12.5 + pos: 30.5,29.5 parent: 2 - - uid: 7534 + - uid: 7956 components: - type: Transform - pos: -5.5,-13.5 + pos: 29.5,29.5 parent: 2 - - uid: 7535 + - uid: 8047 components: - type: Transform - pos: -6.5,-13.5 + pos: 14.5,37.5 parent: 2 - - uid: 7536 + - uid: 8060 components: - type: Transform - pos: -7.5,-13.5 + pos: 14.5,39.5 parent: 2 - - uid: 7537 + - uid: 8199 components: - type: Transform - pos: -8.5,-13.5 - parent: 2 - - uid: 7538 - components: - - type: Transform - pos: -9.5,-13.5 - parent: 2 - - uid: 7539 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - - uid: 7540 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 2 - - uid: 7541 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - uid: 7542 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 7543 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 2 - - uid: 7544 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 2 - - uid: 7548 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 2 - - uid: 7549 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 2 - - uid: 7781 - components: - - type: Transform - pos: 16.5,-38.5 - parent: 2 - - uid: 7782 - components: - - type: Transform - pos: 16.5,-37.5 + pos: 8.5,16.5 parent: 2 - uid: 8287 components: @@ -26147,11 +28193,6 @@ entities: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 8349 - components: - - type: Transform - pos: 43.5,27.5 - parent: 2 - uid: 8350 components: - type: Transform @@ -26187,16 +28228,6 @@ entities: - type: Transform pos: 39.5,23.5 parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 41.5,22.5 - parent: 2 - - uid: 8358 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - uid: 8359 components: - type: Transform @@ -26272,45 +28303,10 @@ entities: - type: Transform pos: 33.5,30.5 parent: 2 - - uid: 8375 + - uid: 8392 components: - type: Transform - pos: 34.5,30.5 - parent: 2 - - uid: 8376 - components: - - type: Transform - pos: 35.5,30.5 - parent: 2 - - uid: 8383 - components: - - type: Transform - pos: 36.5,30.5 - parent: 2 - - uid: 8384 - components: - - type: Transform - pos: 36.5,29.5 - parent: 2 - - uid: 8385 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 8386 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8387 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 8388 - components: - - type: Transform - pos: 37.5,25.5 + pos: 32.5,29.5 parent: 2 - uid: 8456 components: @@ -26392,20 +28388,30 @@ entities: - type: Transform pos: 28.5,17.5 parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 - uid: 8536 components: - type: Transform - pos: 37.5,26.5 - parent: 2 - - uid: 8537 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 8538 - components: - - type: Transform - pos: 37.5,28.5 + pos: 41.5,21.5 parent: 2 - uid: 8539 components: @@ -26457,6 +28463,16 @@ entities: - type: Transform pos: 31.5,17.5 parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 - uid: 8698 components: - type: Transform @@ -26582,11 +28598,6 @@ entities: - type: Transform pos: 28.5,33.5 parent: 2 - - uid: 9036 - components: - - type: Transform - pos: 27.5,34.5 - parent: 2 - uid: 9037 components: - type: Transform @@ -26602,16 +28613,6 @@ entities: - type: Transform pos: 30.5,36.5 parent: 2 - - uid: 9040 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 9041 - components: - - type: Transform - pos: 30.5,38.5 - parent: 2 - uid: 9042 components: - type: Transform @@ -26712,11 +28713,6 @@ entities: - type: Transform pos: 33.5,44.5 parent: 2 - - uid: 9094 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - uid: 9095 components: - type: Transform @@ -26887,6 +28883,16 @@ entities: - type: Transform pos: 36.5,46.5 parent: 2 + - uid: 9238 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 - uid: 9253 components: - type: Transform @@ -26957,6 +28963,21 @@ entities: - type: Transform pos: 66.5,45.5 parent: 2 + - uid: 9296 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 - uid: 9474 components: - type: Transform @@ -26977,6 +28998,11 @@ entities: - type: Transform pos: 21.5,44.5 parent: 2 + - uid: 9571 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 - uid: 9638 components: - type: Transform @@ -26987,21 +29013,11 @@ entities: - type: Transform pos: 52.5,-12.5 parent: 2 - - uid: 9640 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 2 - uid: 9641 components: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 9642 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 2 - uid: 9643 components: - type: Transform @@ -27552,26 +29568,11 @@ entities: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 9857 - components: - - type: Transform - pos: 51.5,-14.5 - parent: 2 - - uid: 9858 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 2 - uid: 9859 components: - type: Transform pos: 69.5,-13.5 parent: 2 - - uid: 9860 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 - uid: 9861 components: - type: Transform @@ -27737,56 +29738,41 @@ entities: - type: Transform pos: 38.5,-27.5 parent: 2 - - uid: 9896 - components: - - type: Transform - pos: 39.5,-27.5 - parent: 2 - - uid: 9897 - components: - - type: Transform - pos: 39.5,-26.5 - parent: 2 - uid: 9898 components: - type: Transform pos: 38.5,-25.5 parent: 2 - - uid: 9899 - components: - - type: Transform - pos: 39.5,-25.5 - parent: 2 - - uid: 9900 - components: - - type: Transform - pos: 38.5,-24.5 - parent: 2 - - uid: 9901 - components: - - type: Transform - pos: 37.5,-23.5 - parent: 2 - - uid: 9902 - components: - - type: Transform - pos: 37.5,-24.5 - parent: 2 - - uid: 9903 - components: - - type: Transform - pos: 36.5,-23.5 - parent: 2 - uid: 9904 components: - type: Transform pos: 36.5,-22.5 parent: 2 + - uid: 9928 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 - uid: 10130 components: - type: Transform pos: 63.5,-7.5 parent: 2 + - uid: 10136 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 - uid: 10672 components: - type: Transform @@ -28027,6 +30013,11 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 + - uid: 10852 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 - uid: 10854 components: - type: Transform @@ -28597,6 +30588,46 @@ entities: - type: Transform pos: 65.5,0.5 parent: 2 + - uid: 11283 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + pos: 66.5,40.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 - uid: 12139 components: - type: Transform @@ -28637,6 +30668,11 @@ entities: - type: Transform pos: 78.5,-14.5 parent: 2 + - uid: 12150 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 - uid: 12171 components: - type: Transform @@ -28862,6 +30898,16 @@ entities: - type: Transform pos: 21.5,-41.5 parent: 2 + - uid: 13154 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 - uid: 13313 components: - type: Transform @@ -29077,80 +31123,1120 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 13517 + - uid: 13499 components: - type: Transform - pos: 57.5,37.5 + pos: 56.5,39.5 parent: 2 - - uid: 13518 + - uid: 13500 components: - type: Transform - pos: 57.5,36.5 + pos: 56.5,32.5 parent: 2 - - uid: 13519 + - uid: 13501 components: - type: Transform - pos: 58.5,36.5 + pos: 56.5,37.5 parent: 2 - - uid: 13520 + - uid: 13502 components: - type: Transform - pos: 58.5,35.5 + pos: 56.5,33.5 parent: 2 - - uid: 13521 + - uid: 13503 components: - type: Transform - pos: 58.5,34.5 + pos: 56.5,31.5 parent: 2 - - uid: 13522 + - uid: 13504 components: - type: Transform - pos: 57.5,34.5 + pos: 55.5,30.5 parent: 2 - - uid: 13523 + - uid: 13505 components: - type: Transform - pos: 56.5,34.5 + pos: 56.5,38.5 parent: 2 - - uid: 13524 - components: - - type: Transform - pos: 55.5,34.5 - parent: 2 - - uid: 13525 - components: - - type: Transform - pos: 54.5,34.5 - parent: 2 - - uid: 13526 + - uid: 13506 components: - type: Transform pos: 54.5,35.5 parent: 2 + - uid: 13508 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 - uid: 13527 components: - type: Transform - pos: 54.5,36.5 - parent: 2 - - uid: 13528 - components: - - type: Transform - pos: 54.5,37.5 + pos: 56.5,41.5 parent: 2 - uid: 13529 components: - type: Transform - pos: 55.5,37.5 + pos: 52.5,39.5 parent: 2 - - uid: 13610 + - uid: 13530 components: - type: Transform - pos: 58.5,32.5 + pos: 54.5,39.5 parent: 2 - - uid: 13611 + - uid: 13531 components: - type: Transform - pos: 58.5,33.5 + pos: 56.5,40.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + pos: 56.5,42.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + pos: 60.5,36.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + pos: 56.5,36.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + pos: 57.5,36.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 13718 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 13723 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 13789 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 13790 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 13792 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 13793 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 13796 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 13797 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 13800 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 13803 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 13810 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 13815 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 13816 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 13817 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 13819 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 13821 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 13822 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 13823 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 13825 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 13826 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 13827 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: 66.5,42.5 + parent: 2 + - uid: 14096 + components: + - type: Transform + pos: 72.5,21.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + pos: 66.5,35.5 + parent: 2 + - uid: 14098 + components: + - type: Transform + pos: 66.5,34.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + pos: 66.5,33.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + pos: 66.5,32.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: 66.5,38.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: 66.5,30.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: 66.5,28.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: 66.5,29.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + pos: 66.5,27.5 + parent: 2 + - uid: 14106 + components: + - type: Transform + pos: 66.5,26.5 + parent: 2 + - uid: 14107 + components: + - type: Transform + pos: 66.5,25.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: 69.5,22.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: 66.5,24.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: 66.5,31.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: 67.5,24.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 14116 + components: + - type: Transform + pos: 69.5,21.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 + - uid: 14118 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 14119 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + pos: 72.5,22.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + pos: 72.5,23.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + pos: 72.5,24.5 + parent: 2 + - uid: 14160 + components: + - type: Transform + pos: 73.5,24.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: 74.5,24.5 + parent: 2 + - uid: 14162 + components: + - type: Transform + pos: 75.5,24.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: 75.5,23.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + pos: 75.5,22.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + pos: 80.5,34.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + pos: 80.5,33.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + pos: 80.5,31.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: 80.5,30.5 + parent: 2 + - uid: 14404 + components: + - type: Transform + pos: 81.5,30.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 80.5,32.5 + parent: 2 + - uid: 14435 + components: + - type: Transform + pos: 82.5,30.5 + parent: 2 + - uid: 14436 + components: + - type: Transform + pos: 83.5,30.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + pos: 84.5,30.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + pos: 85.5,30.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: 86.5,30.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + pos: 87.5,30.5 + parent: 2 + - uid: 14441 + components: + - type: Transform + pos: 88.5,30.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + pos: 88.5,29.5 + parent: 2 + - uid: 14443 + components: + - type: Transform + pos: 88.5,28.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + pos: 89.5,30.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + pos: 90.5,30.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + pos: 91.5,30.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + pos: 92.5,30.5 + parent: 2 + - uid: 14536 + components: + - type: Transform + pos: 93.5,30.5 + parent: 2 + - uid: 14537 + components: + - type: Transform + pos: 93.5,31.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + pos: 93.5,29.5 + parent: 2 + - uid: 14539 + components: + - type: Transform + pos: 93.5,28.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + pos: 94.5,28.5 + parent: 2 + - uid: 14541 + components: + - type: Transform + pos: 95.5,28.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: 95.5,29.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + pos: 93.5,32.5 + parent: 2 + - uid: 14544 + components: + - type: Transform + pos: 94.5,32.5 + parent: 2 + - uid: 14545 + components: + - type: Transform + pos: 95.5,32.5 + parent: 2 + - uid: 14546 + components: + - type: Transform + pos: 95.5,31.5 + parent: 2 + - uid: 14685 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 14688 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 14690 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 14702 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 14703 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 14704 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 14705 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 14706 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 14707 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 14708 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 14710 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 14712 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 14713 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 14714 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 14731 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 14858 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: 64.5,42.5 + parent: 2 + - uid: 14863 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 14864 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - uid: 14865 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 14866 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 14868 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 + - uid: 14869 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 + - uid: 14870 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 14871 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 + - uid: 14872 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 14873 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 14874 + components: + - type: Transform + pos: 62.5,38.5 + parent: 2 + - uid: 14875 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - uid: 14877 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 14879 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 14880 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 14881 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 + - uid: 14882 + components: + - type: Transform + pos: 56.5,44.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 14884 + components: + - type: Transform + pos: 53.5,44.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: 55.5,44.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + pos: 52.5,43.5 + parent: 2 + - uid: 14887 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + pos: 52.5,44.5 + parent: 2 + - uid: 14889 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 14890 + components: + - type: Transform + pos: 50.5,42.5 + parent: 2 + - uid: 14891 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 14892 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 14893 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 14894 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + pos: 62.5,31.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 14933 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 14935 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 14945 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 14946 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 14948 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 14977 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 2 + - uid: 14981 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 15003 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 15030 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + pos: 38.5,-12.5 parent: 2 - proto: CableMVStack entities: @@ -29184,6 +32270,17 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-32.5 parent: 2 + - uid: 2120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-38.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 - uid: 4872 components: - type: Transform @@ -29201,17 +32298,23 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 + - uid: 7741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,33.5 + parent: 2 - uid: 12647 components: - type: Transform rot: 3.141592653589793 rad pos: 112.5,-18.5 parent: 2 - - uid: 13516 + - uid: 14393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,38.5 + rot: 3.141592653589793 rad + pos: 79.5,33.5 parent: 2 - proto: CandyBowl entities: @@ -29222,10 +32325,10 @@ entities: parent: 2 - proto: CannabisSeeds entities: - - uid: 11109 + - uid: 8395 components: - type: Transform - pos: 41.505302,37.40492 + pos: 59.5,38.5 parent: 2 - proto: CaptainIDCard entities: @@ -29674,11 +32777,41 @@ entities: parent: 2 - proto: CarpetBlack entities: + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,18.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2 - uid: 5459 components: - type: Transform pos: 67.5,41.5 parent: 2 + - uid: 7586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,18.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 2 - proto: CarpetBlue entities: - uid: 71 @@ -29857,24 +32990,11 @@ entities: parent: 2 - proto: CarpetGreen entities: - - uid: 3411 + - uid: 2276 components: - type: Transform - rot: 3.141592653589793 rad pos: 67.5,27.5 parent: 2 - - uid: 3445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,28.5 - parent: 2 - - uid: 3446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,29.5 - parent: 2 - uid: 5463 components: - type: Transform @@ -29928,8 +33048,23 @@ entities: - type: Transform pos: 107.5,-12.5 parent: 2 + - uid: 14089 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: 67.5,28.5 + parent: 2 - proto: CarpetOrange entities: + - uid: 3431 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 - uid: 5495 components: - type: Transform @@ -29945,17 +33080,17 @@ entities: - type: Transform pos: 70.5,32.5 parent: 2 - - uid: 5498 + - uid: 5513 + components: + - type: Transform + pos: 69.5,28.5 + parent: 2 + - uid: 8357 components: - type: Transform pos: 70.5,27.5 parent: 2 - - uid: 5499 - components: - - type: Transform - pos: 70.5,28.5 - parent: 2 - - uid: 5500 + - uid: 8817 components: - type: Transform pos: 70.5,29.5 @@ -30058,10 +33193,40 @@ entities: parent: 2 - proto: Catwalk entities: - - uid: 245 + - uid: 8 components: - type: Transform - pos: -15.5,16.5 + rot: 1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-21.5 parent: 2 - uid: 592 components: @@ -30083,6 +33248,17 @@ entities: - type: Transform pos: 4.5,-32.5 parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-49.5 + parent: 2 - uid: 1374 components: - type: Transform @@ -30348,23 +33524,75 @@ entities: - type: Transform pos: 23.5,-21.5 parent: 2 - - uid: 2297 + - uid: 2264 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,34.5 + pos: 32.5,-47.5 parent: 2 - - uid: 2298 + - uid: 2275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,33.5 + pos: 16.5,-49.5 parent: 2 - - uid: 2299 + - uid: 2280 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,32.5 + pos: 26.5,-49.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,18.5 parent: 2 - uid: 3807 components: @@ -30576,6 +33804,30 @@ entities: - type: Transform pos: 89.5,45.5 parent: 2 + - uid: 4272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-48.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,30.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,31.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 2 - uid: 4440 components: - type: Transform @@ -30596,6 +33848,24 @@ entities: - type: Transform pos: 11.5,-23.5 parent: 2 + - uid: 4504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,37.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,35.5 + parent: 2 - uid: 4776 components: - type: Transform @@ -30641,6 +33911,12 @@ entities: - type: Transform pos: 53.5,6.5 parent: 2 + - uid: 5105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-21.5 + parent: 2 - uid: 5123 components: - type: Transform @@ -30656,6 +33932,24 @@ entities: - type: Transform pos: 46.5,-34.5 parent: 2 + - uid: 5499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,18.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-53.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-49.5 + parent: 2 - uid: 5613 components: - type: Transform @@ -30691,11 +33985,29 @@ entities: - type: Transform pos: 46.5,-29.5 parent: 2 + - uid: 5681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-49.5 + parent: 2 - uid: 5730 components: - type: Transform pos: 46.5,-24.5 parent: 2 + - uid: 5746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-19.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-19.5 + parent: 2 - uid: 5860 components: - type: Transform @@ -30746,6 +34058,47 @@ entities: - type: Transform pos: 39.5,-19.5 parent: 2 + - uid: 6003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-19.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-19.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,35.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-21.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-21.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-21.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 - uid: 7007 components: - type: Transform @@ -30756,17 +34109,102 @@ entities: - type: Transform pos: 47.5,6.5 parent: 2 + - uid: 7253 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,36.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-53.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-49.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,18.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 - uid: 7820 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,27.5 parent: 2 + - uid: 7826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,18.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,24.5 + parent: 2 - uid: 7860 components: - type: Transform pos: 46.5,-30.5 parent: 2 + - uid: 8029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 - uid: 8283 components: - type: Transform @@ -30779,6 +34217,11 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,17.5 parent: 2 + - uid: 8286 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 - uid: 8302 components: - type: Transform @@ -30799,6 +34242,11 @@ entities: - type: Transform pos: 45.5,6.5 parent: 2 + - uid: 8391 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 - uid: 8750 components: - type: Transform @@ -30905,15 +34353,11 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,27.5 parent: 2 - - uid: 9927 + - uid: 9233 components: - type: Transform - pos: 54.5,27.5 - parent: 2 - - uid: 9928 - components: - - type: Transform - pos: 58.5,27.5 + rot: 3.141592653589793 rad + pos: 40.5,-19.5 parent: 2 - uid: 10711 components: @@ -31110,21 +34554,11 @@ entities: - type: Transform pos: 74.5,-16.5 parent: 2 - - uid: 10763 - components: - - type: Transform - pos: 72.5,-16.5 - parent: 2 - uid: 10764 components: - type: Transform pos: 69.5,-16.5 parent: 2 - - uid: 10765 - components: - - type: Transform - pos: 69.5,-15.5 - parent: 2 - uid: 10766 components: - type: Transform @@ -31135,11 +34569,6 @@ entities: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 10768 - components: - - type: Transform - pos: 66.5,29.5 - parent: 2 - uid: 10769 components: - type: Transform @@ -31240,11 +34669,6 @@ entities: - type: Transform pos: 81.5,6.5 parent: 2 - - uid: 10959 - components: - - type: Transform - pos: 15.5,-50.5 - parent: 2 - uid: 10960 components: - type: Transform @@ -31260,25 +34684,11 @@ entities: - type: Transform pos: 15.5,-53.5 parent: 2 - - uid: 10967 - components: - - type: Transform - pos: 17.5,-46.5 - parent: 2 - uid: 10968 components: - type: Transform - pos: 21.5,-46.5 - parent: 2 - - uid: 10969 - components: - - type: Transform - pos: 25.5,-46.5 - parent: 2 - - uid: 10970 - components: - - type: Transform - pos: 27.5,-50.5 + rot: -1.5707963267948966 rad + pos: 14.5,-57.5 parent: 2 - uid: 10971 components: @@ -31295,36 +34705,6 @@ entities: - type: Transform pos: 26.5,-53.5 parent: 2 - - uid: 10974 - components: - - type: Transform - pos: 24.5,-56.5 - parent: 2 - - uid: 10975 - components: - - type: Transform - pos: 21.5,-56.5 - parent: 2 - - uid: 10976 - components: - - type: Transform - pos: 17.5,-56.5 - parent: 2 - - uid: 10977 - components: - - type: Transform - pos: 16.5,-56.5 - parent: 2 - - uid: 10978 - components: - - type: Transform - pos: 16.5,-55.5 - parent: 2 - - uid: 10979 - components: - - type: Transform - pos: 16.5,-54.5 - parent: 2 - uid: 10980 components: - type: Transform @@ -31335,76 +34715,6 @@ entities: - type: Transform pos: 16.5,-51.5 parent: 2 - - uid: 10982 - components: - - type: Transform - pos: 16.5,-49.5 - parent: 2 - - uid: 10983 - components: - - type: Transform - pos: 16.5,-48.5 - parent: 2 - - uid: 10984 - components: - - type: Transform - pos: 16.5,-47.5 - parent: 2 - - uid: 10985 - components: - - type: Transform - pos: 16.5,-46.5 - parent: 2 - - uid: 10986 - components: - - type: Transform - pos: 18.5,-46.5 - parent: 2 - - uid: 10987 - components: - - type: Transform - pos: 19.5,-46.5 - parent: 2 - - uid: 10988 - components: - - type: Transform - pos: 20.5,-46.5 - parent: 2 - - uid: 10989 - components: - - type: Transform - pos: 22.5,-46.5 - parent: 2 - - uid: 10990 - components: - - type: Transform - pos: 23.5,-46.5 - parent: 2 - - uid: 10991 - components: - - type: Transform - pos: 24.5,-46.5 - parent: 2 - - uid: 10992 - components: - - type: Transform - pos: 26.5,-46.5 - parent: 2 - - uid: 10993 - components: - - type: Transform - pos: 26.5,-47.5 - parent: 2 - - uid: 10994 - components: - - type: Transform - pos: 26.5,-48.5 - parent: 2 - - uid: 10995 - components: - - type: Transform - pos: 26.5,-49.5 - parent: 2 - uid: 10996 components: - type: Transform @@ -31415,81 +34725,16 @@ entities: - type: Transform pos: 26.5,-52.5 parent: 2 - - uid: 10998 - components: - - type: Transform - pos: 26.5,-54.5 - parent: 2 - - uid: 10999 - components: - - type: Transform - pos: 26.5,-55.5 - parent: 2 - - uid: 11000 - components: - - type: Transform - pos: 26.5,-56.5 - parent: 2 - - uid: 11001 - components: - - type: Transform - pos: 25.5,-56.5 - parent: 2 - - uid: 11002 - components: - - type: Transform - pos: 23.5,-56.5 - parent: 2 - - uid: 11003 - components: - - type: Transform - pos: 22.5,-56.5 - parent: 2 - - uid: 11004 - components: - - type: Transform - pos: 20.5,-56.5 - parent: 2 - - uid: 11005 - components: - - type: Transform - pos: 19.5,-56.5 - parent: 2 - - uid: 11006 - components: - - type: Transform - pos: 18.5,-56.5 - parent: 2 - - uid: 11733 - components: - - type: Transform - pos: 46.5,36.5 - parent: 2 - - uid: 11734 - components: - - type: Transform - pos: 46.5,35.5 - parent: 2 - - uid: 11735 - components: - - type: Transform - pos: 46.5,34.5 - parent: 2 - - uid: 11736 - components: - - type: Transform - pos: 46.5,33.5 - parent: 2 - - uid: 11737 - components: - - type: Transform - pos: 46.5,32.5 - parent: 2 - uid: 11755 components: - type: Transform pos: 46.5,-28.5 parent: 2 + - uid: 11883 + components: + - type: Transform + pos: 74.5,20.5 + parent: 2 - uid: 12308 components: - type: Transform @@ -31700,10 +34945,10 @@ entities: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 12405 + - uid: 12741 components: - type: Transform - pos: 41.5,-18.5 + pos: 47.5,26.5 parent: 2 - uid: 12844 components: @@ -31910,6 +35155,53 @@ entities: - type: Transform pos: 48.5,-36.5 parent: 2 + - uid: 13248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-22.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-20.5 + parent: 2 - uid: 13436 components: - type: Transform @@ -31940,105 +35232,35 @@ entities: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 13493 + - uid: 13599 components: - type: Transform - pos: 14.5,-38.5 + pos: 45.5,28.5 parent: 2 - - uid: 13682 + - uid: 13600 components: - type: Transform - pos: -14.5,16.5 + pos: 45.5,29.5 parent: 2 - - uid: 13683 + - uid: 13601 components: - type: Transform - pos: -13.5,16.5 + pos: 45.5,31.5 parent: 2 - - uid: 13684 + - uid: 13602 components: - type: Transform - pos: -12.5,16.5 + pos: 45.5,32.5 parent: 2 - - uid: 13685 + - uid: 13603 components: - type: Transform - pos: -11.5,16.5 + pos: 45.5,30.5 parent: 2 - - uid: 13686 + - uid: 13728 components: - type: Transform - pos: -10.5,16.5 - parent: 2 - - uid: 13687 - components: - - type: Transform - pos: -9.5,16.5 - parent: 2 - - uid: 13688 - components: - - type: Transform - pos: -8.5,16.5 - parent: 2 - - uid: 13689 - components: - - type: Transform - pos: -7.5,16.5 - parent: 2 - - uid: 13690 - components: - - type: Transform - pos: -6.5,16.5 - parent: 2 - - uid: 13691 - components: - - type: Transform - pos: -5.5,16.5 - parent: 2 - - uid: 13692 - components: - - type: Transform - pos: -4.5,16.5 - parent: 2 - - uid: 13693 - components: - - type: Transform - pos: -3.5,16.5 - parent: 2 - - uid: 13694 - components: - - type: Transform - pos: -1.5,16.5 - parent: 2 - - uid: 13695 - components: - - type: Transform - pos: -0.5,16.5 - parent: 2 - - uid: 13696 - components: - - type: Transform - pos: 0.5,16.5 - parent: 2 - - uid: 13697 - components: - - type: Transform - pos: 1.5,16.5 - parent: 2 - - uid: 13698 - components: - - type: Transform - pos: -2.5,16.5 - parent: 2 - - uid: 13699 - components: - - type: Transform - pos: 3.5,16.5 - parent: 2 - - uid: 13700 - components: - - type: Transform - pos: 2.5,16.5 + pos: 86.5,4.5 parent: 2 - uid: 13749 components: @@ -32055,6 +35277,652 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 2 + - uid: 13886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 2 + - uid: 13887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 2 + - uid: 13890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - uid: 13891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 2 + - uid: 13900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 2 + - uid: 13902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-22.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: 76.5,23.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: 77.5,23.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + pos: 78.5,23.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + pos: 79.5,23.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + pos: 79.5,24.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + pos: 79.5,25.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + pos: 79.5,26.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + pos: 79.5,27.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: 81.5,27.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: 77.5,30.5 + parent: 2 + - uid: 14222 + components: + - type: Transform + pos: 80.5,24.5 + parent: 2 + - uid: 14230 + components: + - type: Transform + pos: 81.5,24.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + pos: 76.5,30.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + pos: 75.5,30.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + pos: 74.5,30.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: 73.5,30.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + pos: 76.5,20.5 + parent: 2 + - uid: 14258 + components: + - type: Transform + pos: 76.5,21.5 + parent: 2 + - uid: 14259 + components: + - type: Transform + pos: 76.5,22.5 + parent: 2 + - uid: 14260 + components: + - type: Transform + pos: 81.5,25.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + pos: 73.5,34.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + pos: 73.5,26.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,33.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,50.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,50.5 + parent: 2 + - uid: 14724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,38.5 + parent: 2 + - uid: 14896 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 14897 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 14898 + components: + - type: Transform + pos: 52.5,43.5 + parent: 2 + - uid: 14899 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - uid: 14900 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 14901 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: 64.5,42.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,18.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - uid: 15011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-12.5 + parent: 2 + - uid: 15012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 15013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 2 + - uid: 15014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-12.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-12.5 + parent: 2 + - uid: 15016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-12.5 + parent: 2 + - uid: 15017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 2 + - uid: 15018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-13.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-13.5 + parent: 2 + - uid: 15020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-13.5 + parent: 2 + - uid: 15027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-19.5 + parent: 2 + - uid: 15028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-19.5 + parent: 2 + - uid: 15029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-19.5 + parent: 2 + - uid: 15043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-21.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-21.5 + parent: 2 + - uid: 15046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 2 + - uid: 15047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 2 + - uid: 15048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-48.5 + parent: 2 + - uid: 15049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-49.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-51.5 + parent: 2 + - uid: 15051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-52.5 + parent: 2 + - uid: 15052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-53.5 + parent: 2 + - uid: 15053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-54.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-55.5 + parent: 2 + - uid: 15055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-57.5 + parent: 2 + - uid: 15056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-50.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-56.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-57.5 + parent: 2 + - uid: 15059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-57.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-57.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-57.5 + parent: 2 + - uid: 15062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-57.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-57.5 + parent: 2 + - uid: 15064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-57.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-57.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-57.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-57.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-57.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-57.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-57.5 + parent: 2 + - uid: 15071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-57.5 + parent: 2 + - uid: 15072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-57.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-56.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-54.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-53.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-52.5 + parent: 2 + - uid: 15077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-51.5 + parent: 2 + - uid: 15078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-50.5 + parent: 2 + - uid: 15079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-49.5 + parent: 2 + - uid: 15080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-55.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-48.5 + parent: 2 + - uid: 15082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-47.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 2 - proto: Cautery entities: - uid: 7791 @@ -32064,6 +35932,12 @@ entities: parent: 2 - proto: Chair entities: + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 - uid: 38 components: - type: Transform @@ -32075,20 +35949,17 @@ entities: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 84 + - uid: 102 components: - type: Transform - pos: -8.5,-12.5 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 parent: 2 - - uid: 85 + - uid: 334 components: - type: Transform - pos: -9.5,-12.5 - parent: 2 - - uid: 88 - components: - - type: Transform - pos: -15.5,-12.5 + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 parent: 2 - uid: 790 components: @@ -32181,27 +36052,16 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 2 - - uid: 1946 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 2 - uid: 2409 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,22.5 parent: 2 - - uid: 2493 + - uid: 3234 components: - type: Transform - pos: 30.5,30.5 - parent: 2 - - uid: 2494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,28.5 + pos: 40.5,36.5 parent: 2 - uid: 5089 components: @@ -32269,18 +36129,27 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,17.5 parent: 2 + - uid: 7535 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 - uid: 7546 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 - - uid: 7713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 2 - uid: 7729 components: - type: Transform @@ -32360,6 +36229,11 @@ entities: - type: Transform pos: 25.5,7.5 parent: 2 + - uid: 9642 + components: + - type: Transform + pos: 78.5,5.5 + parent: 2 - uid: 10637 components: - type: Transform @@ -32388,6 +36262,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,13.5 parent: 2 + - uid: 12144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,34.5 + parent: 2 - uid: 12177 components: - type: Transform @@ -32436,6 +36316,77 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 + - uid: 12427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 12428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,47.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,47.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,47.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,47.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - uid: 14587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 14679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,3.5 + parent: 2 - proto: ChairMeat entities: - uid: 13071 @@ -32496,6 +36447,11 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,22.5 parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 - uid: 2480 components: - type: Transform @@ -32586,23 +36542,17 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 2 - - uid: 7710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,24.5 - parent: 2 - uid: 7792 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,14.5 parent: 2 - - uid: 8253 + - uid: 8207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 + rot: 3.141592653589793 rad + pos: 18.517927,23.649218 parent: 2 - uid: 8608 components: @@ -32615,16 +36565,22 @@ entities: - type: Transform pos: 50.5,2.5 parent: 2 + - uid: 9036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 2 - uid: 10912 components: - type: Transform pos: 74.5,-1.5 parent: 2 - - uid: 12150 + - uid: 12728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,30.5 + rot: -1.5707963267948966 rad + pos: 7.5,25.5 parent: 2 - uid: 13446 components: @@ -32632,6 +36588,23 @@ entities: rot: -1.5707963267948966 rad pos: 30.454672,-24.238243 parent: 2 + - uid: 14154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,23.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + pos: 90.5,29.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,31.5 + parent: 2 - proto: ChairOfficeLight entities: - uid: 940 @@ -32799,6 +36772,12 @@ entities: - type: Transform pos: 19.5,33.56914 parent: 2 + - uid: 3418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,27.5 + parent: 2 - uid: 5502 components: - type: Transform @@ -32816,24 +36795,6 @@ entities: - type: Transform pos: 70.5,34.495007 parent: 2 - - uid: 5511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,29.5 - parent: 2 - - uid: 5512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,27.5 - parent: 2 - - uid: 5513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.49502,28.5 - parent: 2 - uid: 6477 components: - type: Transform @@ -32858,6 +36819,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-12.5 parent: 2 + - uid: 8440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,29.5 + parent: 2 - uid: 8644 components: - type: Transform @@ -32878,6 +36845,12 @@ entities: - type: Transform pos: 9.853746,-41.642406 parent: 2 + - uid: 14091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,27.5 + parent: 2 - proto: CheapLighter entities: - uid: 6631 @@ -33046,6 +37019,14 @@ entities: showEnts: False occludes: True ent: null +- proto: ChessBoard + entities: + - uid: 14078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 - proto: ChurchOrganInstrument entities: - uid: 8921 @@ -33070,6 +37051,11 @@ entities: - type: Transform pos: 17.630993,41.086063 parent: 2 + - uid: 12753 + components: + - type: Transform + pos: 6.6187644,19.547955 + parent: 2 - proto: CigPackGreen entities: - uid: 5523 @@ -33104,6 +37090,11 @@ entities: parent: 2 - proto: ClosetBombFilled entities: + - uid: 2261 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 - uid: 12854 components: - type: Transform @@ -33111,16 +37102,6 @@ entities: parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 98 - components: - - type: Transform - pos: -17.5,-12.5 - parent: 2 - - uid: 106 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 2 - uid: 1480 components: - type: Transform @@ -33131,6 +37112,16 @@ entities: - type: Transform pos: 24.5,-5.5 parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 72.5,-10.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 - uid: 5261 components: - type: Transform @@ -33151,21 +37142,11 @@ entities: - type: Transform pos: 36.5,-38.5 parent: 2 - - uid: 5736 - components: - - type: Transform - pos: 69.5,-11.5 - parent: 2 - uid: 5901 components: - type: Transform pos: 5.5,-30.5 parent: 2 - - uid: 7985 - components: - - type: Transform - pos: -6.5,0.5 - parent: 2 - uid: 7997 components: - type: Transform @@ -33181,17 +37162,39 @@ entities: - type: Transform pos: 43.5,46.5 parent: 2 - - uid: 13001 + - uid: 12478 components: - type: Transform - pos: 31.5,-46.5 + pos: 56.5,47.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 14156 + components: + - type: Transform + pos: 71.5,21.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 7537 + components: + - type: Transform + pos: -9.5,0.5 parent: 2 - proto: ClosetFireFilled entities: - - uid: 94 + - uid: 99 components: - type: Transform - pos: -14.5,-12.5 + pos: -7.5,-14.5 parent: 2 - uid: 5260 components: @@ -33213,6 +37216,11 @@ entities: - type: Transform pos: 39.5,42.5 parent: 2 + - uid: 12803 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 166 @@ -33267,6 +37275,11 @@ entities: parent: 2 - proto: ClosetMaintenanceFilledRandom entities: + - uid: 3501 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 - uid: 5437 components: - type: Transform @@ -33277,11 +37290,6 @@ entities: - type: Transform pos: 23.5,6.5 parent: 2 - - uid: 9309 - components: - - type: Transform - pos: 72.5,23.5 - parent: 2 - uid: 10836 components: - type: Transform @@ -33297,6 +37305,16 @@ entities: - type: Transform pos: 52.5,-20.5 parent: 2 + - uid: 13969 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + pos: 67.5,31.5 + parent: 2 - proto: ClosetRadiationSuitFilled entities: - uid: 3687 @@ -33343,6 +37361,75 @@ entities: - type: Transform pos: 49.5,46.5 parent: 2 + - uid: 14734 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 +- proto: ClosetWallOrange + entities: + - uid: 13620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13621 + - uid: 13753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,35.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: + - 14550 - proto: ClothingBackpackClown entities: - uid: 9611 @@ -33453,7 +37540,7 @@ entities: - uid: 10848 components: - type: Transform - pos: 45.471096,27.566444 + pos: 44.482018,28.569605 parent: 2 - proto: ClothingEyesGlassesSunglasses entities: @@ -33497,10 +37584,10 @@ entities: parent: 2 - proto: ClothingHandsGlovesFingerless entities: - - uid: 2891 + - uid: 2479 components: - type: Transform - pos: 10.782635,21.422426 + pos: 11.846642,20.44815 parent: 2 - proto: ClothingHandsGlovesPowerglove entities: @@ -33537,13 +37624,6 @@ entities: - type: Transform pos: 58.54981,-24.623142 parent: 2 -- proto: ClothingHeadHatChickenhead - entities: - - uid: 8830 - components: - - type: Transform - pos: 72.52045,21.835241 - parent: 2 - proto: ClothingHeadHatFedoraGrey entities: - uid: 7557 @@ -33571,7 +37651,7 @@ entities: - uid: 10851 components: - type: Transform - pos: 45.45547,27.660194 + pos: 44.5341,28.569605 parent: 2 - proto: ClothingHeadHatHardhatOrange entities: @@ -33599,13 +37679,6 @@ entities: - type: Transform pos: 84.40167,-5.2654653 parent: 2 -- proto: ClothingHeadHatPaper - entities: - - uid: 8251 - components: - - type: Transform - pos: 36.290367,33.722393 - parent: 2 - proto: ClothingHeadHatPirate entities: - uid: 7554 @@ -33708,15 +37781,10 @@ entities: parent: 2 - proto: ClothingHeadsetMining entities: - - uid: 12669 + - uid: 2134 components: - type: Transform - pos: 9.6021385,15.473721 - parent: 2 - - uid: 12670 - components: - - type: Transform - pos: 9.6021385,15.473721 + pos: 5.5,31.5 parent: 2 - proto: ClothingMaskBear entities: @@ -33754,7 +37822,7 @@ entities: - uid: 5343 components: - type: Transform - pos: 60.54693,25.63966 + pos: 60.54431,25.642796 parent: 2 - uid: 10799 components: @@ -33792,6 +37860,13 @@ entities: - type: Transform pos: 91.43456,-0.49069238 parent: 2 +- proto: ClothingNeckCloakMiner + entities: + - uid: 697 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 - proto: ClothingNeckCloakMoth entities: - uid: 9368 @@ -33849,11 +37924,6 @@ entities: - type: Transform pos: 19.90453,5.512045 parent: 2 - - uid: 12228 - components: - - type: Transform - pos: 69.577194,21.53721 - parent: 2 - proto: ClothingOuterApron entities: - uid: 8825 @@ -33986,30 +38056,6 @@ entities: - type: Transform pos: 52.52299,8.566419 parent: 2 -- proto: ClothingOuterCoatTrench - entities: - - uid: 7757 - components: - - type: Transform - pos: 69.55329,21.631119 - parent: 2 -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 9478 - components: - - type: Transform - pos: 38.48357,28.698536 - parent: 2 - - uid: 9883 - components: - - type: Transform - pos: 38.48357,28.698536 - parent: 2 - - uid: 9884 - components: - - type: Transform - pos: 38.48357,28.698536 - parent: 2 - proto: ClothingOuterHospitalGown entities: - uid: 12499 @@ -34019,10 +38065,10 @@ entities: parent: 2 - proto: ClothingOuterPonchoClassic entities: - - uid: 8930 + - uid: 14092 components: - type: Transform - pos: 70.48266,27.712364 + pos: 70.51337,28.554468 parent: 2 - proto: ClothingOuterSkub entities: @@ -34031,13 +38077,6 @@ entities: - type: Transform pos: 7.4669356,-11.631976 parent: 2 -- proto: ClothingOuterSuitChicken - entities: - - uid: 8932 - components: - - type: Transform - pos: 72.52045,21.491491 - parent: 2 - proto: ClothingOuterSuitFire entities: - uid: 5721 @@ -34048,7 +38087,7 @@ entities: - uid: 10849 components: - type: Transform - pos: 45.51797,27.660194 + pos: 44.450768,28.725964 parent: 2 - proto: ClothingOuterVestHazard entities: @@ -34057,10 +38096,10 @@ entities: - type: Transform pos: 27.494364,-29.379656 parent: 2 - - uid: 2150 + - uid: 13691 components: - type: Transform - pos: 10.541297,21.522875 + pos: 11.523725,20.510695 parent: 2 - proto: ClothingOuterWizard entities: @@ -34134,13 +38173,6 @@ entities: - type: Transform pos: 70.5,37.5 parent: 2 -- proto: ClothingShoesTourist - entities: - - uid: 9349 - components: - - type: Transform - pos: -10.508648,-14.809846 - parent: 2 - proto: ClothingShoesWizard entities: - uid: 6796 @@ -34370,18 +38402,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,7.5 parent: 2 - - uid: 11425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,4.5 - parent: 2 - - uid: 11426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,5.5 - parent: 2 - uid: 12677 components: - type: Transform @@ -34396,10 +38416,10 @@ entities: parent: 2 - proto: CommandmentCircuitBoard entities: - - uid: 13760 + - uid: 14286 components: - type: Transform - pos: 52.427402,30.685076 + pos: 86.43288,28.403772 parent: 2 - proto: CommsComputerCircuitboard entities: @@ -34465,30 +38485,30 @@ entities: parent: 2 - proto: ComputerCargoBounty entities: - - uid: 7809 + - uid: 7263 components: - type: Transform - pos: 15.5,25.5 + pos: 14.5,25.5 parent: 2 - proto: ComputerCargoOrders entities: - - uid: 2136 + - uid: 5285 components: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 7741 + - uid: 7471 components: - type: Transform - pos: 11.5,28.5 + pos: 7.5,19.5 parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 6864 + - uid: 14770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,25.5 + rot: 3.141592653589793 rad + pos: 7.5,21.5 parent: 2 - proto: ComputerComms entities: @@ -34505,17 +38525,17 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: + - uid: 2468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,17.5 + parent: 2 - uid: 7925 components: - type: Transform pos: 31.5,48.5 parent: 2 - - uid: 8430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,26.5 - parent: 2 - uid: 9617 components: - type: Transform @@ -34552,6 +38572,12 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 + - uid: 8431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,17.5 + parent: 2 - uid: 12083 components: - type: Transform @@ -34562,12 +38588,6 @@ entities: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 12091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,27.5 - parent: 2 - proto: ComputerId entities: - uid: 401 @@ -34644,11 +38664,11 @@ entities: - type: Transform pos: 20.5,46.5 parent: 2 - - uid: 12821 + - uid: 9957 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,15.5 + pos: 4.5,39.5 parent: 2 - proto: ComputerResearchAndDevelopment entities: @@ -34684,19 +38704,19 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 12820 + - uid: 5046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,21.5 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 parent: 2 - proto: ComputerShuttleCargo entities: - - uid: 7727 + - uid: 7879 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,25.5 + pos: 6.5,25.5 parent: 2 - proto: ComputerSolarControl entities: @@ -34743,17 +38763,17 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: + - uid: 2469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,17.5 + parent: 2 - uid: 8346 components: - type: Transform pos: 24.5,48.5 parent: 2 - - uid: 8431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,28.5 - parent: 2 - uid: 12082 components: - type: Transform @@ -34766,28 +38786,43 @@ entities: parent: 2 - proto: ComputerTelevision entities: - - uid: 11475 + - uid: 8498 components: - type: Transform - pos: 41.5,20.5 + rot: 1.5707963267948966 rad + pos: 41.5,18.5 parent: 2 - proto: ContainmentFieldGenerator entities: - uid: 752 components: - type: Transform + anchored: False pos: 9.5,-26.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 1113 components: - type: Transform + anchored: False pos: 9.5,-27.5 parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 1289 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 - uid: 1593 components: - type: Transform + anchored: False pos: 9.5,-28.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 3979 components: - type: Transform @@ -34810,23 +38845,29 @@ entities: parent: 2 - proto: ConveyorBelt entities: - - uid: 1319 + - uid: 450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,15.5 + rot: 3.141592653589793 rad + pos: 7.5,35.5 parent: 2 - - uid: 2028 + - uid: 944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,15.5 + rot: 3.141592653589793 rad + pos: 7.5,38.5 parent: 2 - - uid: 2030 + - uid: 967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,15.5 + rot: -1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,36.5 parent: 2 - uid: 2037 components: @@ -34834,18 +38875,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,27.5 parent: 2 - - uid: 2038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,27.5 - parent: 2 - - uid: 2039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 2040 components: - type: Transform @@ -34858,12 +38889,16 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,27.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 2042 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 2051 components: - type: Transform @@ -34876,6 +38911,8 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,27.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 2066 components: - type: Transform @@ -34888,12 +38925,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 - - uid: 5285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 2 - uid: 5842 components: - type: Transform @@ -34957,138 +38988,38 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 6775 + - uid: 8239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,15.5 + rot: -1.5707963267948966 rad + pos: 3.5,23.5 parent: 2 - - uid: 6820 + - uid: 12384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,15.5 + rot: -1.5707963267948966 rad + pos: 7.5,34.5 parent: 2 - - uid: 6823 + - uid: 13731 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,15.5 + pos: 3.5,27.5 parent: 2 - - uid: 6825 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 14660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 2 - - uid: 6844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 2 - - uid: 6846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,15.5 - parent: 2 - - uid: 7585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 2 - - uid: 7586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 2 - - uid: 7667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 2 - - uid: 7671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,15.5 - parent: 2 - - uid: 7672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 2 - - uid: 7841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - - uid: 7849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2 - - uid: 7875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,15.5 - parent: 2 - - uid: 7876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,15.5 - parent: 2 - - uid: 7878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 2 - - uid: 7879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,15.5 - parent: 2 - - uid: 7880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,15.5 - parent: 2 - - uid: 7888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 2 - - uid: 7891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 2 - - uid: 7949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,15.5 + rot: 3.141592653589793 rad + pos: 7.5,37.5 parent: 2 - proto: CorporateCircuitBoard entities: - - uid: 11861 + - uid: 14278 components: - type: Transform - pos: 52.427402,31.731949 + pos: 84.53704,28.653946 parent: 2 - proto: CowToolboxFilled entities: @@ -35118,16 +39049,21 @@ entities: - type: Transform pos: 10.5,26.5 parent: 2 - - uid: 8172 - components: - - type: Transform - pos: 6.5,31.5 - parent: 2 - uid: 8177 components: - type: Transform pos: 12.5,24.5 parent: 2 + - uid: 8526 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 13001 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 - proto: CrateEngineeringAMEJar entities: - uid: 5263 @@ -35194,6 +39130,11 @@ entities: - entity_storage - proto: CrateEngineeringCableLV entities: + - uid: 2223 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 - uid: 12353 components: - type: Transform @@ -35248,55 +39189,45 @@ entities: ent: null - proto: CrateFilledSpawner entities: - - uid: 191 + - uid: 6861 components: - type: Transform - pos: 12.5,16.5 + pos: 9.5,26.5 parent: 2 - - uid: 7552 + - uid: 6864 components: - type: Transform - pos: 13.5,24.5 + pos: 9.5,24.5 parent: 2 - uid: 8165 components: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 8166 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - uid: 8168 components: - type: Transform pos: 11.5,26.5 parent: 2 - - uid: 8169 + - uid: 9306 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 14775 components: - type: Transform pos: 12.5,26.5 parent: 2 - - uid: 8170 + - uid: 14777 components: - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 8171 - components: - - type: Transform - pos: 6.5,30.5 - parent: 2 - - uid: 8173 - components: - - type: Transform - pos: 6.5,32.5 - parent: 2 - - uid: 8174 - components: - - type: Transform - pos: 7.5,32.5 + pos: 13.5,30.5 parent: 2 - proto: CrateFreezer entities: @@ -35414,10 +39345,10 @@ entities: parent: 2 - proto: CrateTrashCart entities: - - uid: 13117 + - uid: 7822 components: - type: Transform - pos: 45.5,29.5 + pos: 44.5,27.5 parent: 2 - uid: 13122 components: @@ -35458,6 +39389,11 @@ entities: - type: Transform pos: 30.486448,7.511799 parent: 2 + - uid: 13631 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 - proto: CrayonRainbow entities: - uid: 12700 @@ -35535,6 +39471,12 @@ entities: parent: 2 - proto: CryogenicSleepUnit entities: + - uid: 3187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,32.5 + parent: 2 - uid: 6934 components: - type: Transform @@ -35579,6 +39521,14 @@ entities: - type: Transform pos: 61.483326,-0.38000047 parent: 2 +- proto: CurtainsOrangeOpen + entities: + - uid: 8076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 - proto: d6Dice entities: - uid: 316 @@ -35603,6 +39553,13 @@ entities: rot: 3.141592653589793 rad pos: 70.50039,33.577915 parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 14515 + components: + - type: Transform + pos: 85.5,30.5 + parent: 2 - proto: DefaultStationBeaconAME entities: - uid: 12372 @@ -35626,10 +39583,10 @@ entities: parent: 2 - proto: DefaultStationBeaconArrivals entities: - - uid: 12370 + - uid: 14028 components: - type: Transform - pos: -14.5,-13.5 + pos: -23.5,-12.5 parent: 2 - proto: DefaultStationBeaconArtifactLab entities: @@ -35757,6 +39714,20 @@ entities: - type: Transform pos: 0.5,-30.5 parent: 2 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 13729 + components: + - type: Transform + pos: 86.5,4.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 4139 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 - proto: DefaultStationBeaconEVAStorage entities: - uid: 13130 @@ -35815,10 +39786,10 @@ entities: parent: 2 - proto: DefaultStationBeaconPermaBrig entities: - - uid: 13138 + - uid: 13518 components: - type: Transform - pos: 39.5,33.5 + pos: 56.5,36.5 parent: 2 - proto: DefaultStationBeaconPowerBank entities: @@ -35829,10 +39800,10 @@ entities: parent: 2 - proto: DefaultStationBeaconQMRoom entities: - - uid: 13140 + - uid: 14772 components: - type: Transform - pos: 12.5,30.5 + pos: 7.5,18.5 parent: 2 - proto: DefaultStationBeaconRDRoom entities: @@ -35857,13 +39828,18 @@ entities: parent: 2 - proto: DefaultStationBeaconSalvage entities: - - uid: 13170 + - uid: 14771 components: - type: Transform - pos: 7.5,16.5 + pos: 7.5,33.5 parent: 2 - proto: DefaultStationBeaconServerRoom entities: + - uid: 2288 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 - uid: 13171 components: - type: Transform @@ -35984,6 +39960,11 @@ entities: - type: Transform pos: 34.50083,-8.541687 parent: 2 + - uid: 14993 + components: + - type: Transform + pos: 51.458427,1.5715649 + parent: 2 - proto: DiseaseDiagnoser entities: - uid: 12156 @@ -35991,6 +39972,18 @@ entities: - type: Transform pos: 82.5,-7.5 parent: 2 +- proto: DiseaseSwab + entities: + - uid: 13754 + components: + - type: Transform + pos: 56.618065,41.538536 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: 56.451397,41.674046 + parent: 2 - proto: DisposalBend entities: - uid: 1228 @@ -36004,10 +39997,11 @@ entities: rot: 3.141592653589793 rad pos: 4.5,10.5 parent: 2 - - uid: 3456 + - uid: 3251 components: - type: Transform - pos: 14.5,20.5 + rot: -1.5707963267948966 rad + pos: 33.5,23.5 parent: 2 - uid: 5777 components: @@ -36138,10 +40132,11 @@ entities: rot: 3.141592653589793 rad pos: 41.5,1.5 parent: 2 - - uid: 7707 + - uid: 7601 components: - type: Transform - pos: 33.5,23.5 + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 parent: 2 - uid: 7751 components: @@ -36149,18 +40144,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,13.5 parent: 2 - - uid: 7761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - - uid: 7953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,18.5 - parent: 2 - uid: 8263 components: - type: Transform @@ -36317,24 +40300,35 @@ entities: - type: Transform pos: 54.5,3.5 parent: 2 - - uid: 12440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 2 - - uid: 12456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 2 - uid: 12470 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 + - uid: 13156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,23.5 + parent: 2 + - uid: 15041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-6.5 + parent: 2 - proto: DisposalJunction entities: - uid: 2422 @@ -36403,6 +40397,12 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: + - uid: 1333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 - uid: 5141 components: - type: Transform @@ -36431,6 +40431,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,0.5 parent: 2 + - uid: 9857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 + parent: 2 - uid: 10601 components: - type: Transform @@ -36448,12 +40454,6 @@ entities: - type: Transform pos: 54.5,1.5 parent: 2 - - uid: 12457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 2 - proto: DisposalPipe entities: - uid: 28 @@ -36468,6 +40468,12 @@ entities: rot: 3.141592653589793 rad pos: 26.5,15.5 parent: 2 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 - uid: 385 components: - type: Transform @@ -36480,12 +40486,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-24.5 parent: 2 - - uid: 2065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,18.5 - parent: 2 - uid: 2118 components: - type: Transform @@ -36510,11 +40510,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,12.5 parent: 2 - - uid: 2380 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - uid: 5534 components: - type: Transform @@ -36877,6 +40872,21 @@ entities: rot: 3.141592653589793 rad pos: 26.5,22.5 parent: 2 + - uid: 6905 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 - uid: 7291 components: - type: Transform @@ -37335,6 +41345,12 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,0.5 parent: 2 + - uid: 7450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 - uid: 7457 components: - type: Transform @@ -37353,6 +41369,84 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,23.5 parent: 2 + - uid: 7473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 - uid: 7567 components: - type: Transform @@ -37371,26 +41465,27 @@ entities: rot: 3.141592653589793 rad pos: 26.5,20.5 parent: 2 - - uid: 7681 + - uid: 7599 components: - type: Transform - pos: 33.5,19.5 + pos: -22.5,-1.5 parent: 2 - - uid: 7774 + - uid: 7602 components: - type: Transform - pos: 33.5,21.5 + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 parent: 2 - - uid: 7780 + - uid: 7604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,18.5 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 parent: 2 - - uid: 7956 + - uid: 7946 components: - type: Transform - pos: 33.5,20.5 + pos: 33.5,29.5 parent: 2 - uid: 8270 components: @@ -37437,6 +41532,11 @@ entities: rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 + - uid: 8496 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 - uid: 8928 components: - type: Transform @@ -37615,6 +41715,12 @@ entities: - type: Transform pos: 26.5,33.5 parent: 2 + - uid: 9709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 - uid: 10256 components: - type: Transform @@ -38027,18 +42133,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-0.5 parent: 2 - - uid: 11471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 - parent: 2 - - uid: 11473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-0.5 - parent: 2 - uid: 11474 components: - type: Transform @@ -38207,167 +42301,11 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-0.5 parent: 2 - - uid: 12169 + - uid: 12425 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-13.5 - parent: 2 - - uid: 12426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-14.5 - parent: 2 - - uid: 12427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 - parent: 2 - - uid: 12428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-14.5 - parent: 2 - - uid: 12429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 2 - - uid: 12430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 2 - - uid: 12431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 2 - - uid: 12432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 2 - - uid: 12433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 2 - - uid: 12434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 2 - - uid: 12435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 2 - - uid: 12436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 2 - - uid: 12437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 2 - - uid: 12438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 2 - - uid: 12439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - - uid: 12441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-12.5 - parent: 2 - - uid: 12442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-11.5 - parent: 2 - - uid: 12443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 2 - - uid: 12444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 2 - - uid: 12445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-8.5 - parent: 2 - - uid: 12446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-7.5 - parent: 2 - - uid: 12448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 2 - - uid: 12450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-5.5 - parent: 2 - - uid: 12451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-4.5 - parent: 2 - - uid: 12452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 - parent: 2 - - uid: 12453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 2 - - uid: 12454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-1.5 + pos: 46.5,-1.5 parent: 2 - uid: 12458 components: @@ -38387,12 +42325,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 2 - - uid: 12463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 2 - uid: 12464 components: - type: Transform @@ -38449,6 +42381,115 @@ entities: - type: Transform pos: 26.5,-26.5 parent: 2 + - uid: 13586 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 13588 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,23.5 + parent: 2 + - uid: 14158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,23.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,23.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,23.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,24.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,25.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,26.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,27.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,28.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,29.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-2.5 + parent: 2 + - uid: 15037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-4.5 + parent: 2 + - uid: 15039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-5.5 + parent: 2 - proto: DisposalTrunk entities: - uid: 183 @@ -38463,28 +42504,22 @@ entities: rot: 3.141592653589793 rad pos: 50.5,17.5 parent: 2 + - uid: 358 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 - uid: 1227 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 - - uid: 2132 - components: - - type: Transform - pos: 36.5,19.5 - parent: 2 - uid: 2320 components: - type: Transform pos: 4.5,13.5 parent: 2 - - uid: 3263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,20.5 - parent: 2 - uid: 5143 components: - type: Transform @@ -38547,6 +42582,18 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-1.5 parent: 2 + - uid: 7540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 - uid: 9404 components: - type: Transform @@ -38593,29 +42640,51 @@ entities: rot: -1.5707963267948966 rad pos: 81.5,1.5 parent: 2 - - uid: 12422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 2 - - uid: 12471 - components: - - type: Transform - pos: -5.5,0.5 - parent: 2 - uid: 12479 components: - type: Transform pos: 27.5,3.5 parent: 2 + - uid: 13581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,31.5 + parent: 2 + - uid: 14126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,23.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + pos: 79.5,30.5 + parent: 2 + - uid: 15040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-6.5 + parent: 2 - proto: DisposalUnit entities: + - uid: 374 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 - uid: 394 components: - type: Transform pos: 4.5,13.5 parent: 2 + - uid: 469 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 - uid: 1150 components: - type: Transform @@ -38636,16 +42705,6 @@ entities: - type: Transform pos: 36.5,-2.5 parent: 2 - - uid: 2152 - components: - - type: Transform - pos: 13.5,20.5 - parent: 2 - - uid: 2477 - components: - - type: Transform - pos: 36.5,19.5 - parent: 2 - uid: 4697 components: - type: Transform @@ -38721,6 +42780,11 @@ entities: - type: Transform pos: 27.5,-25.5 parent: 2 + - uid: 8435 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 - uid: 8848 components: - type: Transform @@ -38756,21 +42820,31 @@ entities: - type: Transform pos: 81.5,1.5 parent: 2 - - uid: 12421 - components: - - type: Transform - pos: -21.5,-14.5 - parent: 2 - - uid: 12478 - components: - - type: Transform - pos: -5.5,0.5 - parent: 2 - uid: 12492 components: - type: Transform pos: 27.5,3.5 parent: 2 + - uid: 13277 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + pos: 74.5,23.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + pos: 79.5,30.5 + parent: 2 + - uid: 15042 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 2442 @@ -38809,10 +42883,10 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 41 + - uid: 8393 components: - type: Transform - pos: 12.5,31.5 + pos: 36.5,19.5 parent: 2 - uid: 9716 components: @@ -38824,6 +42898,11 @@ entities: - type: Transform pos: 19.5,-5.5 parent: 2 + - uid: 14739 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 - proto: DonkpocketBoxSpawner entities: - uid: 11431 @@ -38853,8 +42932,16 @@ entities: - uid: 5530 components: - type: Transform - pos: 64.522316,20.63157 + pos: 74.515,18.613554 parent: 2 + - type: GasTank + toggleActionEntity: 5500 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 5500 - proto: DresserCaptainFilled entities: - uid: 10279 @@ -38916,10 +43003,10 @@ entities: parent: 2 - proto: DresserQuarterMasterFilled entities: - - uid: 941 + - uid: 14963 components: - type: Transform - pos: 13.5,30.5 + pos: 6.5,16.5 parent: 2 - proto: DresserResearchDirectorFilled entities: @@ -38980,6 +43067,13 @@ entities: - type: Transform pos: 71.508354,37.570084 parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 8334 + components: + - type: Transform + pos: 34.950523,17.590809 + parent: 2 - proto: DrinkLemonadeGlass entities: - uid: 5452 @@ -38987,6 +43081,13 @@ entities: - type: Transform pos: 71.477104,40.663834 parent: 2 +- proto: DrinkMugBlack + entities: + - uid: 8212 + components: + - type: Transform + pos: 6.3375144,19.735584 + parent: 2 - proto: DrinkMugDog entities: - uid: 11968 @@ -38994,6 +43095,35 @@ entities: - type: Transform pos: 55.92937,-10.550333 parent: 2 + - uid: 14631 + components: + - type: Transform + pos: 74.58324,22.689823 + parent: 2 +- proto: DrinkMugMetal + entities: + - uid: 14600 + components: + - type: Transform + pos: 55.15004,41.505497 + parent: 2 + - uid: 14663 + components: + - type: Transform + pos: 5.063261,40.729393 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 12405 + components: + - type: Transform + pos: 78.602234,4.557168 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: 89.5,28.5 + parent: 2 - proto: DrinkMugRainbow entities: - uid: 12701 @@ -39059,25 +43189,34 @@ entities: parent: 2 - proto: DungeonMasterCircuitBoard entities: - - uid: 7304 + - uid: 14279 components: - type: Transform - pos: 52.427402,31.544449 + pos: 84.42593,28.556656 parent: 2 +- proto: ElectricGuitarInstrument + entities: + - uid: 14550 + components: + - type: Transform + parent: 13753 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EmergencyLight entities: + - uid: 323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 2 - uid: 1547 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-14.5 parent: 2 - - uid: 7742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-14.5 - parent: 2 - uid: 11333 components: - type: Transform @@ -39124,13 +43263,6 @@ entities: pos: 25.5,44.5 parent: 2 - type: ActiveEmergencyLight - - uid: 12381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,21.5 - parent: 2 - - type: ActiveEmergencyLight - uid: 12382 components: - type: Transform @@ -39144,6 +43276,40 @@ entities: pos: 60.5,18.5 parent: 2 - type: ActiveEmergencyLight + - uid: 14641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,22.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: 79.5,31.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + pos: 94.5,33.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,27.5 + parent: 2 + - uid: 14778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 - proto: EmergencyRollerBedSpawnFolded entities: - uid: 9622 @@ -39156,13 +43322,23 @@ entities: - uid: 748 components: - type: Transform + anchored: False pos: 9.5,-29.5 parent: 2 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 749 components: - type: Transform + anchored: False pos: 9.5,-30.5 parent: 2 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 10875 components: - type: Transform @@ -39300,6 +43476,12 @@ entities: - type: Transform pos: 32.5,-29.5 parent: 2 + - uid: 4177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,36.5 + parent: 2 - uid: 5111 components: - type: Transform @@ -39350,16 +43532,6 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 7818 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 2 - - uid: 7833 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 2 - uid: 8985 components: - type: Transform @@ -39380,6 +43552,12 @@ entities: - type: Transform pos: 14.5,11.5 parent: 2 + - uid: 14569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,29.5 + parent: 2 - proto: FaxMachineBase entities: - uid: 1622 @@ -39396,13 +43574,6 @@ entities: parent: 2 - type: FaxMachine name: Library - - uid: 2134 - components: - - type: Transform - pos: 11.5,31.5 - parent: 2 - - type: FaxMachine - name: QM Office - uid: 2394 components: - type: Transform @@ -39417,6 +43588,13 @@ entities: parent: 2 - type: FaxMachine name: HoS Office + - uid: 7668 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - type: FaxMachine + name: Cargo - uid: 7728 components: - type: Transform @@ -39424,13 +43602,13 @@ entities: parent: 2 - type: FaxMachine name: Law Office - - uid: 7745 + - uid: 8080 components: - type: Transform - pos: 20.5,24.5 + pos: 9.5,18.5 parent: 2 - type: FaxMachine - name: Cargo + name: Quartermaster - uid: 8320 components: - type: Transform @@ -39459,6 +43637,13 @@ entities: parent: 2 - type: FaxMachine name: HoP Office + - uid: 11002 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - type: FaxMachine + name: Engineering - uid: 11947 components: - type: Transform @@ -39466,6 +43651,20 @@ entities: parent: 2 - type: FaxMachine name: Conference Room + - uid: 14996 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - type: FaxMachine + name: Medical + - uid: 14997 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - type: FaxMachine + name: Science - proto: FaxMachineCaptain entities: - uid: 1465 @@ -39473,13 +43672,6 @@ entities: - type: Transform pos: 30.5,41.5 parent: 2 -- proto: filingCabinet - entities: - - uid: 12092 - components: - - type: Transform - pos: 17.5,23.5 - parent: 2 - proto: filingCabinetDrawerRandom entities: - uid: 108 @@ -39502,6 +43694,11 @@ entities: - type: Transform pos: 73.5,-0.5 parent: 2 + - uid: 14753 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 - proto: filingCabinetRandom entities: - uid: 7834 @@ -39528,17 +43725,6 @@ entities: parent: 2 - proto: FireAlarm entities: - - uid: 5 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,24.5 - parent: 2 - - type: DeviceList - devices: - - 12522 - - 8237 - - 8238 - uid: 194 components: - type: Transform @@ -39604,20 +43790,10 @@ entities: parent: 2 - type: DeviceList devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 + - 193 + - 241 + - 14065 + - 14064 - uid: 2474 components: - type: Transform @@ -39716,6 +43892,18 @@ entities: - 6568 - 12077 - 6684 + - uid: 7013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 30 + - 8238 + - 29 + - 12086 - uid: 7662 components: - type: Transform @@ -39724,12 +43912,6 @@ entities: parent: 2 - type: DeviceList devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - 2125 - 7740 - 7895 @@ -39738,21 +43920,12 @@ entities: - 7889 - 131 - 7950 - - uid: 7842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 - parent: 2 - - type: DeviceList - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 + - 13967 + - 13894 + - 13973 + - 14066 + - 192 + - 1317 - uid: 8005 components: - type: Transform @@ -39886,6 +44059,8 @@ entities: - 9585 - 9584 - 9589 + - 9236 + - 13510 - uid: 10208 components: - type: Transform @@ -39957,6 +44132,9 @@ entities: - 7011 - 6509 - 6568 + - 14994 + - 14992 + - 12161 - uid: 12153 components: - type: Transform @@ -39977,9 +44155,6 @@ entities: - 5190 - 11332 - 11355 - - 12158 - - 12159 - - 12161 - 12162 - uid: 12154 components: @@ -40001,10 +44176,10 @@ entities: - 5190 - 11332 - 11355 - - 12158 - - 12159 - - 12161 - 12162 + - 9896 + - 9897 + - 9858 - uid: 12474 components: - type: Transform @@ -40109,17 +44284,6 @@ entities: - 11323 - 11324 - 12518 - - uid: 12521 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 12519 - - 12086 - - 8237 - - 8238 - uid: 12549 components: - type: Transform @@ -40158,6 +44322,39 @@ entities: - 10413 - 10414 - 10415 + - uid: 14041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 14063 + - 14061 + - 14062 + - 13974 + - 13975 + - 13976 + - 13979 + - 13978 + - 13977 + - 13983 + - 13982 + - 13981 + - uid: 14737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 8106 + - 14672 + - 29 + - 8238 + - 371 - proto: FireAxeCabinetFilled entities: - uid: 1571 @@ -40165,10 +44362,11 @@ entities: - type: Transform pos: 31.5,-22.5 parent: 2 - - uid: 5428 + - uid: 7167 components: - type: Transform - pos: 30.514431,43.46267 + rot: 3.141592653589793 rad + pos: 34.5,44.5 parent: 2 - proto: FireExtinguisher entities: @@ -40190,7 +44388,7 @@ entities: - uid: 10850 components: - type: Transform - pos: 45.471096,27.597694 + pos: 44.52368,28.548758 parent: 2 - proto: FirelockEdge entities: @@ -40200,18 +44398,41 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 2 - - uid: 102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 2 - uid: 131 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 + - uid: 192 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 - uid: 253 components: - type: Transform @@ -40242,6 +44463,15 @@ entities: rot: 3.141592653589793 rad pos: 26.5,15.5 parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 - uid: 2315 components: - type: Transform @@ -40452,6 +44682,9 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - uid: 6928 components: - type: Transform @@ -40488,42 +44721,15 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - uid: 7709 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,0.5 parent: 2 - - uid: 7746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 2 - - uid: 7747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 2 - - uid: 7748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 2 - - uid: 7749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 2 - - uid: 7750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 2 - uid: 7889 components: - type: Transform @@ -40536,6 +44742,9 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - uid: 7938 components: - type: Transform @@ -40570,6 +44779,16 @@ entities: - type: Transform pos: 40.5,3.5 parent: 2 + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9587 + - 9588 - uid: 9362 components: - type: Transform @@ -40603,6 +44822,15 @@ entities: rot: 3.141592653589793 rad pos: 25.5,28.5 parent: 2 + - uid: 9858 + components: + - type: Transform + pos: 68.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12154 + - 12152 - uid: 11244 components: - type: Transform @@ -40787,42 +45015,15 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-2.5 parent: 2 - - uid: 12142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,33.5 - parent: 2 - - uid: 12143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,32.5 - parent: 2 - - uid: 12144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,31.5 - parent: 2 - - uid: 12158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,0.5 - parent: 2 - - uid: 12159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,1.5 - parent: 2 - uid: 12161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,2.5 + pos: 51.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 - uid: 12834 components: - type: Transform @@ -40832,6 +45033,214 @@ entities: - type: DeviceNetwork deviceLists: - 1657 + - uid: 13507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9587 + - 9588 + - uid: 13514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 13967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 13973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 13974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13977 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13978 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13979 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 + - uid: 14992 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 + - uid: 14994 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 - proto: FirelockElectronics entities: - uid: 1045 @@ -40841,6 +45250,18 @@ entities: parent: 2 - proto: FirelockGlass entities: + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7013 + - 14737 + - 5 + - 14754 - uid: 169 components: - type: Transform @@ -40911,6 +45332,11 @@ entities: - type: Transform pos: 35.5,-8.5 parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 - uid: 4919 components: - type: Transform @@ -40966,16 +45392,28 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 8237 + - uid: 8106 components: - type: Transform - pos: 16.5,22.5 + rot: 3.141592653589793 rad + pos: 8.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 + - 14737 + - 5 - uid: 8238 components: - type: Transform pos: 16.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14737 + - 5 + - 7013 + - 14754 - uid: 8823 components: - type: Transform @@ -40996,6 +45434,26 @@ entities: - type: Transform pos: 38.5,14.5 parent: 2 + - uid: 9896 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12154 + - 12152 + - 12163 + - uid: 9897 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12154 + - 12152 + - 12163 - uid: 10205 components: - type: Transform @@ -41092,21 +45550,6 @@ entities: - type: Transform pos: 44.5,43.5 parent: 2 - - uid: 11279 - components: - - type: Transform - pos: 40.5,42.5 - parent: 2 - - uid: 11280 - components: - - type: Transform - pos: 40.5,41.5 - parent: 2 - - uid: 11283 - components: - - type: Transform - pos: 44.5,40.5 - parent: 2 - uid: 11284 components: - type: Transform @@ -41157,11 +45600,6 @@ entities: - type: Transform pos: 72.5,-16.5 parent: 2 - - uid: 11299 - components: - - type: Transform - pos: 71.5,-12.5 - parent: 2 - uid: 11300 components: - type: Transform @@ -41298,6 +45736,10 @@ entities: - type: Transform pos: 21.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7013 + - 14754 - uid: 12087 components: - type: Transform @@ -41320,6 +45762,34 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-24.5 parent: 2 + - uid: 13971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 + - 14737 + - 5 + - uid: 15002 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 2 - proto: Fireplace entities: - uid: 380 @@ -41327,6 +45797,11 @@ entities: - type: Transform pos: 36.5,43.5 parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 - proto: Flash entities: - uid: 4987 @@ -41376,13 +45851,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 6865 - components: - - type: Transform - pos: 40.5,35.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 8960 components: - type: Transform @@ -41418,6 +45886,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 13606 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: FoodBanana entities: - uid: 9595 @@ -41492,6 +45967,11 @@ entities: - type: Transform pos: 37.49929,-7.4188547 parent: 2 + - uid: 11208 + components: + - type: Transform + pos: 35.53611,17.66077 + parent: 2 - proto: FoodBreadBananaSlice entities: - uid: 8651 @@ -41528,11 +46008,6 @@ entities: - type: Transform pos: 36.093643,-12.174504 parent: 2 - - uid: 6868 - components: - - type: Transform - pos: 40.839993,34.745388 - parent: 2 - proto: FoodFrozenPopsicleTrash entities: - uid: 5885 @@ -41942,12 +46417,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-9.5 parent: 2 - - uid: 8677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,33.5 - parent: 2 - uid: 10426 components: - type: Transform @@ -41974,6 +46443,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14345 + components: + - type: Transform + pos: 82.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14621 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeBend entities: - uid: 34 @@ -42092,6 +46575,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1456 components: - type: Transform @@ -42196,6 +46687,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 2290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2383 components: - type: Transform @@ -42204,14 +46703,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 2609 + - uid: 3066 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-13.5 + pos: 67.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' - uid: 3518 components: - type: Transform @@ -42346,6 +46845,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 4219 components: - type: Transform @@ -42353,6 +46860,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 4362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 4427 components: - type: Transform @@ -42392,14 +46907,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 5010 components: - type: Transform @@ -42430,11 +46937,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5765 + - uid: 5286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + rot: -1.5707963267948966 rad + pos: 7.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' @@ -42469,6 +46976,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 6521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6569 components: - type: Transform @@ -42485,14 +47000,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6833 + - uid: 7217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + pos: 14.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF1212FF' - uid: 8023 components: - type: Transform @@ -42501,44 +47015,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8199 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8203 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8205 components: - type: Transform @@ -42554,13 +47030,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8228 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8338 components: - type: Transform @@ -42601,6 +47070,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8662 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8663 components: - type: Transform @@ -42609,14 +47085,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 9545 components: - type: Transform @@ -42937,6 +47405,194 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-27.5 parent: 2 + - uid: 13520 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14418 + components: + - type: Transform + pos: 90.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14425 + components: + - type: Transform + pos: 92.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14604 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 62 @@ -43208,6 +47864,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 352 components: - type: Transform @@ -43229,6 +47893,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 375 components: - type: Transform @@ -43272,6 +47944,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 431 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 432 components: - type: Transform @@ -43325,6 +48004,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 448 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 512 components: - type: Transform @@ -43333,6 +48019,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 609 components: - type: Transform @@ -43379,6 +48073,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 671 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 672 components: - type: Transform @@ -43392,6 +48093,14 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 743 components: - type: Transform @@ -43570,13 +48279,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 907 - components: - - type: Transform - pos: 56.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 908 components: - type: Transform @@ -43646,6 +48348,14 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-34.5 parent: 2 + - uid: 1013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1019 components: - type: Transform @@ -43691,6 +48401,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 1106 components: - type: Transform @@ -43707,6 +48433,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 1157 components: - type: Transform @@ -43794,6 +48528,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1223 + components: + - type: Transform + pos: 46.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1224 components: - type: Transform @@ -43860,6 +48601,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1328 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1329 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1346 components: - type: Transform @@ -44360,13 +49123,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1763 - components: - - type: Transform - pos: 25.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1764 components: - type: Transform @@ -45197,6 +49953,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 2003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2021 components: - type: Transform @@ -45269,6 +50033,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 2135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2139 components: - type: Transform @@ -45283,6 +50055,14 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-28.5 parent: 2 + - uid: 2147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2148 components: - type: Transform @@ -45297,6 +50077,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 2216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2302 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2304 components: - type: Transform @@ -45305,6 +50108,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 2305 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2316 components: - type: Transform @@ -45633,6 +50443,53 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-30.5 parent: 2 + - uid: 3134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3252 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 3289 components: - type: Transform @@ -46223,6 +51080,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 4133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4155 components: - type: Transform @@ -46279,14 +51152,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 4180 components: - type: Transform @@ -46739,6 +51604,14 @@ entities: - type: Transform pos: 35.5,-27.5 parent: 2 + - uid: 4413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4420 components: - type: Transform @@ -46868,6 +51741,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4827 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4907 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 4970 components: - type: Transform @@ -46960,6 +51847,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 5102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5110 components: - type: Transform @@ -46981,13 +51876,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5194 - components: - - type: Transform - pos: 56.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 5206 components: - type: Transform @@ -47025,6 +51913,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 5302 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5303 components: - type: Transform @@ -47047,6 +51942,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 5580 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5666 components: - type: Transform @@ -47117,6 +52019,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 6337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6425 components: - type: Transform @@ -47202,10 +52128,11 @@ entities: - uid: 6536 components: - type: Transform - pos: 56.5,28.5 + rot: 3.141592653589793 rad + pos: 47.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF1212FF' - uid: 6550 components: - type: Transform @@ -47507,13 +52434,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6774 + - uid: 6672 components: - type: Transform - pos: 56.5,26.5 + rot: 3.141592653589793 rad + pos: 47.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF1212FF' - uid: 6818 components: - type: Transform @@ -47530,6 +52458,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6844 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6859 components: - type: Transform @@ -47538,6 +52473,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6915 components: - type: Transform @@ -47603,6 +52554,76 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 7170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7247 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7249 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 7410 components: - type: Transform @@ -47747,150 +52768,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7433 + - uid: 7472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 7578 components: - type: Transform @@ -47899,11 +52808,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7670 + - uid: 7745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: 8.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -47931,6 +52839,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 7878 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8012 components: - type: Transform @@ -47996,6 +52911,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 8111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8179 components: - type: Transform @@ -48060,14 +52983,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 8190 components: - type: Transform @@ -48116,22 +53031,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8200 + - uid: 8198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,22.5 + pos: 7.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8201 + color: '#0335FCFF' + - uid: 8204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,22.5 + pos: 7.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' - uid: 8209 components: - type: Transform @@ -48156,13 +53069,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8212 - components: - - type: Transform - pos: 9.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 8213 components: - type: Transform @@ -48184,41 +53090,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8216 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8217 - components: - - type: Transform - pos: 8.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8218 - components: - - type: Transform - pos: 8.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8219 - components: - - type: Transform - pos: 8.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8223 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8224 components: - type: Transform @@ -48243,14 +53114,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8295 components: - type: Transform @@ -48327,6 +53190,94 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8549 components: - type: Transform @@ -48694,14 +53645,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 8636 components: - type: Transform @@ -48748,33 +53691,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8661 + - uid: 8672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,30.5 + rot: 3.141592653589793 rad + pos: 47.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8662 + color: '#FF1212FF' + - uid: 8673 components: - type: Transform - pos: 40.5,31.5 + rot: 1.5707963267948966 rad + pos: 53.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,33.5 - parent: 2 - - uid: 8676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,33.5 - parent: 2 + color: '#FF1212FF' - uid: 8678 components: - type: Transform @@ -48807,10 +53739,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8702 + - uid: 8713 components: - type: Transform - pos: 56.5,33.5 + rot: -1.5707963267948966 rad + pos: 54.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' @@ -48830,10 +53763,11 @@ entities: - type: Transform pos: 42.5,-24.5 parent: 2 - - uid: 9348 + - uid: 9309 components: - type: Transform - pos: 56.5,32.5 + rot: 3.141592653589793 rad + pos: 67.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' @@ -49110,13 +54044,6 @@ entities: - type: Transform pos: 42.5,-23.5 parent: 2 - - uid: 9726 - components: - - type: Transform - pos: 56.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 10045 components: - type: Transform @@ -49834,14 +54761,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 10344 components: - type: Transform @@ -49905,14 +54824,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 10361 components: - type: Transform @@ -50211,6 +55122,14 @@ entities: - type: Transform pos: 64.5,24.5 parent: 2 + - uid: 10453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10640 components: - type: Transform @@ -50288,6 +55207,14 @@ entities: - type: Transform pos: 43.5,-23.5 parent: 2 + - uid: 10840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11101 components: - type: Transform @@ -51003,6 +55930,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12729 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12821 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12859 components: - type: Transform @@ -51069,6 +56010,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 13435 components: - type: Transform @@ -51087,6 +56052,905 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 + - uid: 13498 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13575 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14388 + components: + - type: Transform + pos: 81.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14389 + components: + - type: Transform + pos: 81.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14426 + components: + - type: Transform + pos: 92.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14607 + components: + - type: Transform + pos: 69.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14608 + components: + - type: Transform + pos: 69.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14665 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14666 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14668 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - uid: 14964 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeTJunction entities: - uid: 14 @@ -51367,6 +57231,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 2043 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2068 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2069 components: - type: Transform @@ -51394,6 +57272,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 2608 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 3691 components: - type: Transform @@ -51493,6 +57394,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 4199 components: - type: Transform @@ -51508,6 +57425,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 4361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4494 components: - type: Transform @@ -51727,14 +57652,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 5233 components: - type: Transform @@ -51790,6 +57707,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 5509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6336 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6423 components: - type: Transform @@ -51874,6 +57806,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 7169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 7274 components: - type: Transform @@ -51896,11 +57860,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 7519 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 7802 components: - type: Transform pos: 50.5,24.5 parent: 2 + - uid: 7881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8182 components: - type: Transform @@ -51933,14 +57928,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 8208 components: - type: Transform @@ -52044,14 +58031,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 10047 components: - type: Transform @@ -52160,6 +58139,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 10360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10363 components: - type: Transform @@ -52199,6 +58186,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 11360 components: - type: Transform @@ -52346,6 +58341,90 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 13577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14012 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14376 + components: + - type: Transform + pos: 84.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14380 + components: + - type: Transform + pos: 85.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14419 + components: + - type: Transform + pos: 89.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPort entities: - uid: 1945 @@ -52469,6 +58548,13 @@ entities: - type: Transform pos: 44.5,-42.5 parent: 2 + - uid: 14391 + components: + - type: Transform + pos: 81.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPressurePump entities: - uid: 670 @@ -52577,6 +58663,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 14374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14390 + components: + - type: Transform + pos: 81.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasThermoMachineFreezer entities: - uid: 3966 @@ -52692,12 +58793,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 429 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 851 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-10.5 parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1161 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 1560 components: - type: Transform @@ -52714,6 +58837,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 2301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2393 components: - type: Transform @@ -52721,6 +58855,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 3152 + components: + - type: Transform + pos: 56.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 3692 components: - type: Transform @@ -52869,6 +59013,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 6774 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6778 components: - type: Transform @@ -52884,6 +59038,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 6908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6927 components: - type: Transform @@ -52903,9 +59068,11 @@ entities: - uid: 7469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 + pos: -10.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7801 @@ -52920,6 +59087,9 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8009 @@ -52937,26 +59107,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8222 - components: - - type: Transform - pos: 9.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 8236 components: - type: Transform pos: 19.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14754 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8240 @@ -52997,6 +59155,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8575 components: - type: Transform @@ -53034,13 +59203,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8673 - components: - - type: Transform - pos: 40.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 8684 components: - type: Transform @@ -53048,21 +59210,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8701 - components: - - type: Transform - pos: 56.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 9358 components: - type: Transform @@ -53234,6 +59381,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 10452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 10643 components: - type: Transform @@ -53326,8 +59484,136 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 13980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14384 + components: + - type: Transform + pos: 86.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14613 + components: + - type: Transform + pos: 72.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14669 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14736 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasVentScrubber entities: + - uid: 1232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1305 components: - type: Transform @@ -53344,6 +59630,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 3475 components: - type: Transform @@ -53373,6 +59681,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4414 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4447 components: - type: Transform @@ -53490,6 +59808,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6949 components: - type: Transform @@ -53506,14 +59835,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7708 components: - type: Transform @@ -53522,12 +59843,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7837 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8010 @@ -53546,19 +59881,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8221 + - uid: 8203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8229 - components: - - type: Transform - pos: 8.5,26.5 + pos: 9.5,27.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8235 @@ -53566,6 +59896,9 @@ entities: - type: Transform pos: 18.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14754 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8243 @@ -53614,12 +59947,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,33.5 - parent: 2 - uid: 8685 components: - type: Transform @@ -53892,6 +60219,147 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14432 + components: + - type: Transform + pos: 92.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14667 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasVolumePump entities: - uid: 1238 @@ -53917,6 +60385,13 @@ entities: - type: Transform pos: 67.46306,3.7913218 parent: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 14392 + components: + - type: Transform + pos: 79.5,33.5 + parent: 2 - proto: Girder entities: - uid: 1968 @@ -53934,16 +60409,6 @@ entities: - type: Transform pos: 85.5,1.5 parent: 2 - - uid: 6006 - components: - - type: Transform - pos: 66.5,21.5 - parent: 2 - - uid: 6007 - components: - - type: Transform - pos: 66.5,18.5 - parent: 2 - uid: 6238 components: - type: Transform @@ -53964,31 +60429,6 @@ entities: - type: Transform pos: 32.5,-56.5 parent: 2 - - uid: 13340 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 2 - - uid: 13341 - components: - - type: Transform - pos: -27.5,0.5 - parent: 2 - - uid: 13342 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 2 - - uid: 13343 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 2 - - uid: 13681 - components: - - type: Transform - pos: -27.5,9.5 - parent: 2 - proto: GlassBoxLaserFilled entities: - uid: 5106 @@ -54013,45 +60453,23 @@ entities: parent: 2 - proto: Grille entities: - - uid: 8 + - uid: 18 components: - type: Transform - pos: -14.5,-20.5 - parent: 2 - - uid: 12 - components: - - type: Transform - pos: -18.5,14.5 - parent: 2 - - uid: 15 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 2 - - uid: 16 - components: - - type: Transform - pos: -4.5,-16.5 + rot: 3.141592653589793 rad + pos: 57.5,46.5 parent: 2 - uid: 19 components: - type: Transform - pos: -6.5,-18.5 + rot: 3.141592653589793 rad + pos: 55.5,46.5 parent: 2 - - uid: 20 + - uid: 85 components: - type: Transform - pos: -4.5,-17.5 - parent: 2 - - uid: 44 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 2 - - uid: 83 - components: - - type: Transform - pos: -7.5,-0.5 + rot: 3.141592653589793 rad + pos: -8.5,1.5 parent: 2 - uid: 103 components: @@ -54083,46 +60501,11 @@ entities: - type: Transform pos: 26.5,-30.5 parent: 2 - - uid: 130 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 2 - - uid: 141 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 2 - - uid: 144 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 2 - uid: 147 components: - type: Transform pos: 27.5,-30.5 parent: 2 - - uid: 196 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 2 - - uid: 197 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 2 - - uid: 240 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 2 - - uid: 241 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 2 - uid: 244 components: - type: Transform @@ -54158,67 +60541,18 @@ entities: - type: Transform pos: 12.5,8.5 parent: 2 - - uid: 331 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 2 - - uid: 332 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 333 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - - uid: 334 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 2 - uid: 335 components: - type: Transform + rot: -1.5707963267948966 rad pos: -19.5,-15.5 parent: 2 - - uid: 336 - components: - - type: Transform - pos: -20.5,-15.5 - parent: 2 - - uid: 337 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 2 - - uid: 339 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 2 - - uid: 341 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 2 - - uid: 346 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 2 - uid: 392 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-23.5 parent: 2 - - uid: 403 - components: - - type: Transform - pos: -4.5,14.5 - parent: 2 - uid: 406 components: - type: Transform @@ -54231,26 +60565,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-29.5 parent: 2 - - uid: 428 - components: - - type: Transform - pos: -6.5,14.5 - parent: 2 - - uid: 429 - components: - - type: Transform - pos: 5.5,20.5 - parent: 2 - - uid: 438 - components: - - type: Transform - pos: -9.5,14.5 - parent: 2 - - uid: 471 - components: - - type: Transform - pos: -10.5,14.5 - parent: 2 - uid: 507 components: - type: Transform @@ -54266,20 +60580,11 @@ entities: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 607 + - uid: 612 components: - type: Transform - pos: 0.5,14.5 - parent: 2 - - uid: 610 - components: - - type: Transform - pos: -0.5,14.5 - parent: 2 - - uid: 614 - components: - - type: Transform - pos: -1.5,14.5 + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 parent: 2 - uid: 660 components: @@ -54291,11 +60596,6 @@ entities: - type: Transform pos: 17.5,-18.5 parent: 2 - - uid: 662 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - uid: 663 components: - type: Transform @@ -54311,26 +60611,6 @@ entities: - type: Transform pos: 19.5,-16.5 parent: 2 - - uid: 674 - components: - - type: Transform - pos: -25.5,-12.5 - parent: 2 - - uid: 687 - components: - - type: Transform - pos: -2.5,14.5 - parent: 2 - - uid: 694 - components: - - type: Transform - pos: -27.5,-14.5 - parent: 2 - - uid: 697 - components: - - type: Transform - pos: -3.5,14.5 - parent: 2 - uid: 698 components: - type: Transform @@ -54497,16 +60777,6 @@ entities: - type: Transform pos: 18.5,-42.5 parent: 2 - - uid: 967 - components: - - type: Transform - pos: 18.5,-43.5 - parent: 2 - - uid: 968 - components: - - type: Transform - pos: 18.5,-44.5 - parent: 2 - uid: 969 components: - type: Transform @@ -54532,16 +60802,6 @@ entities: - type: Transform pos: 23.5,-44.5 parent: 2 - - uid: 974 - components: - - type: Transform - pos: 24.5,-44.5 - parent: 2 - - uid: 975 - components: - - type: Transform - pos: 24.5,-43.5 - parent: 2 - uid: 976 components: - type: Transform @@ -54572,16 +60832,6 @@ entities: - type: Transform pos: 16.5,-43.5 parent: 2 - - uid: 1108 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 2 - - uid: 1180 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 2 - uid: 1241 components: - type: Transform @@ -54613,25 +60863,10 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-10.5 parent: 2 - - uid: 1316 + - uid: 1274 components: - type: Transform - pos: -11.5,-11.5 - parent: 2 - - uid: 1317 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 2 - - uid: 1330 - components: - - type: Transform - pos: -12.5,14.5 - parent: 2 - - uid: 1336 - components: - - type: Transform - pos: -15.5,-11.5 + pos: 39.5,32.5 parent: 2 - uid: 1338 components: @@ -54693,15 +60928,15 @@ entities: - type: Transform pos: 28.5,-6.5 parent: 2 + - uid: 1545 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 - uid: 1546 components: - type: Transform - pos: -7.5,14.5 - parent: 2 - - uid: 1556 - components: - - type: Transform - pos: -16.5,-11.5 + pos: -8.5,16.5 parent: 2 - uid: 1565 components: @@ -54718,21 +60953,6 @@ entities: - type: Transform pos: 45.5,-2.5 parent: 2 - - uid: 1710 - components: - - type: Transform - pos: 46.5,-14.5 - parent: 2 - - uid: 1711 - components: - - type: Transform - pos: 46.5,-15.5 - parent: 2 - - uid: 1712 - components: - - type: Transform - pos: 46.5,-16.5 - parent: 2 - uid: 1713 components: - type: Transform @@ -54761,12 +60981,7 @@ entities: - uid: 1773 components: - type: Transform - pos: -5.5,14.5 - parent: 2 - - uid: 1854 - components: - - type: Transform - pos: -14.5,-19.5 + pos: -6.5,16.5 parent: 2 - uid: 1856 components: @@ -54781,7 +60996,7 @@ entities: - uid: 1998 components: - type: Transform - pos: 6.5,22.5 + pos: -5.5,16.5 parent: 2 - uid: 1999 components: @@ -54793,10 +61008,15 @@ entities: - type: Transform pos: 4.5,22.5 parent: 2 - - uid: 2005 + - uid: 2001 components: - type: Transform - pos: 6.5,25.5 + pos: -4.5,16.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: -3.5,16.5 parent: 2 - uid: 2006 components: @@ -54808,11 +61028,6 @@ entities: - type: Transform pos: 4.5,25.5 parent: 2 - - uid: 2008 - components: - - type: Transform - pos: 6.5,28.5 - parent: 2 - uid: 2009 components: - type: Transform @@ -54823,35 +61038,21 @@ entities: - type: Transform pos: 4.5,28.5 parent: 2 - - uid: 2023 + - uid: 2013 components: - type: Transform - pos: -12.5,-20.5 + pos: 4.5,16.5 parent: 2 - uid: 2031 components: - type: Transform pos: -7.5,-5.5 parent: 2 - - uid: 2035 - components: - - type: Transform - pos: 11.5,29.5 - parent: 2 - uid: 2036 components: - type: Transform - pos: 13.5,29.5 - parent: 2 - - uid: 2076 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 2077 - components: - - type: Transform - pos: 7.5,20.5 + rot: -1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - uid: 2079 components: @@ -54903,21 +61104,6 @@ entities: - type: Transform pos: 31.5,17.5 parent: 2 - - uid: 2274 - components: - - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 2279 - components: - - type: Transform - pos: 42.5,31.5 - parent: 2 - - uid: 2280 - components: - - type: Transform - pos: 42.5,33.5 - parent: 2 - uid: 2281 components: - type: Transform @@ -54943,21 +61129,6 @@ entities: - type: Transform pos: 37.5,23.5 parent: 2 - - uid: 2353 - components: - - type: Transform - pos: 37.5,26.5 - parent: 2 - - uid: 2354 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 2355 - components: - - type: Transform - pos: 37.5,28.5 - parent: 2 - uid: 2357 components: - type: Transform @@ -55118,45 +61289,28 @@ entities: - type: Transform pos: 22.5,29.5 parent: 2 - - uid: 2729 + - uid: 2734 components: - type: Transform - pos: -13.5,1.5 - parent: 2 - - uid: 2732 - components: - - type: Transform - pos: -25.5,-13.5 + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 parent: 2 - uid: 2735 components: - type: Transform pos: -4.5,-14.5 parent: 2 - - uid: 2736 + - uid: 2737 components: - type: Transform - pos: -11.5,1.5 + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 parent: 2 - uid: 2740 components: - type: Transform - pos: -25.5,-14.5 - parent: 2 - - uid: 2741 - components: - - type: Transform - pos: -9.5,1.5 - parent: 2 - - uid: 2742 - components: - - type: Transform - pos: -14.5,1.5 - parent: 2 - - uid: 2743 - components: - - type: Transform - pos: -10.5,1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 parent: 2 - uid: 2789 components: @@ -55233,11 +61387,6 @@ entities: - type: Transform pos: 18.5,45.5 parent: 2 - - uid: 2828 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 2 - uid: 2830 components: - type: Transform @@ -55343,11 +61492,6 @@ entities: - type: Transform pos: 44.5,1.5 parent: 2 - - uid: 2965 - components: - - type: Transform - pos: 43.5,1.5 - parent: 2 - uid: 2966 components: - type: Transform @@ -55503,41 +61647,6 @@ entities: - type: Transform pos: 52.5,47.5 parent: 2 - - uid: 3118 - components: - - type: Transform - pos: 53.5,47.5 - parent: 2 - - uid: 3119 - components: - - type: Transform - pos: 54.5,47.5 - parent: 2 - - uid: 3120 - components: - - type: Transform - pos: 55.5,47.5 - parent: 2 - - uid: 3121 - components: - - type: Transform - pos: 56.5,47.5 - parent: 2 - - uid: 3122 - components: - - type: Transform - pos: 57.5,47.5 - parent: 2 - - uid: 3123 - components: - - type: Transform - pos: 59.5,47.5 - parent: 2 - - uid: 3124 - components: - - type: Transform - pos: 58.5,47.5 - parent: 2 - uid: 3126 components: - type: Transform @@ -55553,11 +61662,6 @@ entities: - type: Transform pos: 61.5,47.5 parent: 2 - - uid: 3138 - components: - - type: Transform - pos: 47.5,40.5 - parent: 2 - uid: 3139 components: - type: Transform @@ -55573,166 +61677,23 @@ entities: - type: Transform pos: 47.5,37.5 parent: 2 + - uid: 3161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,26.5 + parent: 2 - uid: 3213 components: - type: Transform pos: 62.5,46.5 parent: 2 - - uid: 3223 - components: - - type: Transform - pos: 50.5,32.5 - parent: 2 - - uid: 3224 - components: - - type: Transform - pos: 50.5,33.5 - parent: 2 - - uid: 3225 - components: - - type: Transform - pos: 50.5,34.5 - parent: 2 - - uid: 3226 - components: - - type: Transform - pos: 50.5,35.5 - parent: 2 - - uid: 3227 - components: - - type: Transform - pos: 50.5,36.5 - parent: 2 - - uid: 3228 - components: - - type: Transform - pos: 50.5,37.5 - parent: 2 - - uid: 3229 - components: - - type: Transform - pos: 50.5,38.5 - parent: 2 - - uid: 3230 - components: - - type: Transform - pos: 50.5,39.5 - parent: 2 - - uid: 3231 - components: - - type: Transform - pos: 51.5,39.5 - parent: 2 - - uid: 3232 - components: - - type: Transform - pos: 51.5,40.5 - parent: 2 - - uid: 3233 - components: - - type: Transform - pos: 52.5,40.5 - parent: 2 - - uid: 3234 - components: - - type: Transform - pos: 53.5,40.5 - parent: 2 - - uid: 3235 - components: - - type: Transform - pos: 53.5,41.5 - parent: 2 - - uid: 3236 - components: - - type: Transform - pos: 54.5,41.5 - parent: 2 - - uid: 3237 - components: - - type: Transform - pos: 55.5,41.5 - parent: 2 - - uid: 3238 - components: - - type: Transform - pos: 56.5,41.5 - parent: 2 - - uid: 3239 - components: - - type: Transform - pos: 57.5,41.5 - parent: 2 - - uid: 3240 - components: - - type: Transform - pos: 58.5,41.5 - parent: 2 - - uid: 3241 - components: - - type: Transform - pos: 59.5,41.5 - parent: 2 - - uid: 3242 - components: - - type: Transform - pos: 59.5,40.5 - parent: 2 - - uid: 3243 - components: - - type: Transform - pos: 60.5,40.5 - parent: 2 - - uid: 3244 - components: - - type: Transform - pos: 61.5,40.5 - parent: 2 - - uid: 3245 - components: - - type: Transform - pos: 61.5,39.5 - parent: 2 - - uid: 3246 - components: - - type: Transform - pos: 62.5,39.5 - parent: 2 - - uid: 3247 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - - uid: 3248 - components: - - type: Transform - pos: 62.5,37.5 - parent: 2 - - uid: 3249 - components: - - type: Transform - pos: 62.5,36.5 - parent: 2 - - uid: 3250 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - - uid: 3251 - components: - - type: Transform - pos: 62.5,34.5 - parent: 2 - - uid: 3252 - components: - - type: Transform - pos: 62.5,33.5 - parent: 2 - - uid: 3253 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - uid: 3291 components: - type: Transform @@ -55749,6 +61710,12 @@ entities: - type: Transform pos: 65.5,48.5 parent: 2 + - uid: 3322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 - uid: 3323 components: - type: Transform @@ -55769,16 +61736,6 @@ entities: - type: Transform pos: 53.5,49.5 parent: 2 - - uid: 3327 - components: - - type: Transform - pos: 54.5,49.5 - parent: 2 - - uid: 3328 - components: - - type: Transform - pos: 58.5,49.5 - parent: 2 - uid: 3329 components: - type: Transform @@ -55799,16 +61756,6 @@ entities: - type: Transform pos: 62.5,49.5 parent: 2 - - uid: 3333 - components: - - type: Transform - pos: 55.5,49.5 - parent: 2 - - uid: 3334 - components: - - type: Transform - pos: 57.5,49.5 - parent: 2 - uid: 3341 components: - type: Transform @@ -55864,11 +61811,6 @@ entities: - type: Transform pos: 74.5,44.5 parent: 2 - - uid: 3476 - components: - - type: Transform - pos: 57.5,27.5 - parent: 2 - uid: 3477 components: - type: Transform @@ -55884,11 +61826,6 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 - - uid: 3493 - components: - - type: Transform - pos: 55.5,27.5 - parent: 2 - uid: 3495 components: - type: Transform @@ -56162,7 +62099,8 @@ entities: - uid: 4066 components: - type: Transform - pos: -18.5,-11.5 + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 parent: 2 - uid: 4074 components: @@ -56180,17 +62118,21 @@ entities: - type: Transform pos: 24.5,-12.5 parent: 2 - - uid: 4282 - components: - - type: Transform - anchored: False - pos: -32.5,13.5 - parent: 2 - uid: 4296 components: - type: Transform pos: 24.5,-9.5 parent: 2 + - uid: 4319 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 - uid: 4338 components: - type: Transform @@ -56266,6 +62208,66 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 + - uid: 4400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,38.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,39.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,37.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,36.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,29.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,29.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,30.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,30.5 + parent: 2 - uid: 4415 components: - type: Transform @@ -56336,11 +62338,6 @@ entities: - type: Transform pos: 47.5,-37.5 parent: 2 - - uid: 4873 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 2 - uid: 5248 components: - type: Transform @@ -56351,20 +62348,11 @@ entities: - type: Transform pos: 45.5,-27.5 parent: 2 - - uid: 5297 + - uid: 5288 components: - type: Transform - pos: -12.5,1.5 - parent: 2 - - uid: 5302 - components: - - type: Transform - pos: 4.5,19.5 - parent: 2 - - uid: 5362 - components: - - type: Transform - pos: 59.5,26.5 + rot: 1.5707963267948966 rad + pos: 10.5,47.5 parent: 2 - uid: 5431 components: @@ -56401,10 +62389,17 @@ entities: - type: Transform pos: 72.5,27.5 parent: 2 - - uid: 5681 + - uid: 5581 components: - type: Transform - pos: -8.5,14.5 + rot: 1.5707963267948966 rad + pos: 9.5,47.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,33.5 parent: 2 - uid: 5751 components: @@ -56471,10 +62466,17 @@ entities: - type: Transform pos: 33.5,53.5 parent: 2 - - uid: 5967 + - uid: 5765 components: - type: Transform - pos: -20.5,-11.5 + rot: 3.141592653589793 rad + pos: 56.5,49.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,50.5 parent: 2 - uid: 6119 components: @@ -56526,6 +62528,12 @@ entities: - type: Transform pos: 11.5,-43.5 parent: 2 + - uid: 6324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,26.5 + parent: 2 - uid: 6501 components: - type: Transform @@ -56561,35 +62569,41 @@ entities: - type: Transform pos: 45.5,-24.5 parent: 2 - - uid: 6779 - components: - - type: Transform - pos: 1.5,14.5 - parent: 2 - - uid: 6781 - components: - - type: Transform - pos: -11.5,14.5 - parent: 2 - uid: 6806 components: - type: Transform - pos: -7.5,-2.5 + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 parent: 2 - - uid: 6807 + - uid: 6821 components: - type: Transform - pos: -7.5,-6.5 + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 parent: 2 - - uid: 6810 + - uid: 6830 components: - type: Transform - pos: -13.5,-10.5 + rot: 1.5707963267948966 rad + pos: 1.5,34.5 parent: 2 - - uid: 6834 + - uid: 6831 components: - type: Transform - pos: -27.5,-13.5 + rot: 1.5707963267948966 rad + pos: 4.5,32.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,47.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,31.5 parent: 2 - uid: 6842 components: @@ -56599,77 +62613,175 @@ entities: - uid: 6845 components: - type: Transform - pos: -6.5,-16.5 + rot: -1.5707963267948966 rad + pos: -9.5,1.5 parent: 2 - - uid: 6884 + - uid: 6860 components: - type: Transform - pos: -7.5,-9.5 + pos: -20.5,16.5 parent: 2 - - uid: 6885 + - uid: 6874 components: - type: Transform - pos: -8.5,-11.5 + pos: -16.5,16.5 parent: 2 - uid: 6886 components: - type: Transform - pos: -7.5,-8.5 + rot: -1.5707963267948966 rad + pos: -13.5,1.5 parent: 2 - - uid: 6889 + - uid: 6887 components: - type: Transform - pos: -7.5,-1.5 - parent: 2 - - uid: 6890 - components: - - type: Transform - pos: -7.5,-10.5 + rot: -1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - uid: 6891 components: - type: Transform - pos: -9.5,-11.5 + rot: -1.5707963267948966 rad + pos: -15.5,1.5 parent: 2 - uid: 6892 components: - type: Transform - pos: -6.5,-15.5 + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: -14.5,16.5 parent: 2 - uid: 7010 components: - type: Transform pos: 45.5,-25.5 parent: 2 - - uid: 7455 + - uid: 7433 components: - type: Transform - pos: -15.5,14.5 + rot: -1.5707963267948966 rad + pos: -22.5,1.5 parent: 2 - - uid: 7456 + - uid: 7434 components: - type: Transform - pos: -16.5,14.5 + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 parent: 2 - uid: 7465 components: - type: Transform - pos: -8.5,1.5 + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 parent: 2 - - uid: 7564 + - uid: 7559 components: - type: Transform - pos: -17.5,14.5 + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,2.5 parent: 2 - uid: 7666 components: - type: Transform pos: 2.5,6.5 parent: 2 + - uid: 7667 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 - uid: 7706 components: - type: Transform - pos: -13.5,14.5 + rot: -1.5707963267948966 rad + pos: 9.5,44.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,35.5 parent: 2 - uid: 7721 components: @@ -56691,10 +62803,29 @@ entities: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 7783 + - uid: 7744 components: - type: Transform - pos: -14.5,14.5 + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,35.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,45.5 parent: 2 - uid: 7795 components: @@ -56706,11 +62837,21 @@ entities: - type: Transform pos: 52.5,23.5 parent: 2 + - uid: 7814 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 - uid: 7817 components: - type: Transform pos: 45.5,-32.5 parent: 2 + - uid: 7833 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 - uid: 7867 components: - type: Transform @@ -56781,6 +62922,69 @@ entities: - type: Transform pos: 2.5,8.5 parent: 2 + - uid: 7961 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,31.5 + parent: 2 - uid: 8667 components: - type: Transform @@ -56791,6 +62995,12 @@ entities: - type: Transform pos: 63.5,26.5 parent: 2 + - uid: 8703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,42.5 + parent: 2 - uid: 8719 components: - type: Transform @@ -57196,10 +63406,21 @@ entities: - type: Transform pos: 117.5,-20.5 parent: 2 - - uid: 10084 + - uid: 9349 components: - type: Transform - pos: 60.5,26.5 + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 43.5,40.5 parent: 2 - uid: 10801 components: @@ -57221,10 +63442,34 @@ entities: - type: Transform pos: 25.5,-59.5 parent: 2 - - uid: 11070 + - uid: 10974 components: - type: Transform - pos: 6.5,19.5 + pos: 41.5,32.5 + parent: 2 + - uid: 10975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,43.5 + parent: 2 + - uid: 10976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,43.5 + parent: 2 + - uid: 10977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - uid: 10983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,43.5 parent: 2 - uid: 11309 components: @@ -57581,11 +63826,6 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 11609 - components: - - type: Transform - pos: -10.5,-28.5 - parent: 2 - uid: 11610 components: - type: Transform @@ -57601,11 +63841,6 @@ entities: - type: Transform pos: -13.5,-28.5 parent: 2 - - uid: 11613 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 2 - uid: 11614 components: - type: Transform @@ -57661,11 +63896,6 @@ entities: - type: Transform pos: -18.5,-36.5 parent: 2 - - uid: 11625 - components: - - type: Transform - pos: -18.5,-37.5 - parent: 2 - uid: 11626 components: - type: Transform @@ -57696,11 +63926,6 @@ entities: - type: Transform pos: -3.5,-42.5 parent: 2 - - uid: 11632 - components: - - type: Transform - pos: -4.5,-42.5 - parent: 2 - uid: 11633 components: - type: Transform @@ -57746,11 +63971,6 @@ entities: - type: Transform pos: -13.5,-42.5 parent: 2 - - uid: 11642 - components: - - type: Transform - pos: -14.5,-42.5 - parent: 2 - uid: 11643 components: - type: Transform @@ -57786,11 +64006,6 @@ entities: - type: Transform pos: 91.5,42.5 parent: 2 - - uid: 11650 - components: - - type: Transform - pos: 91.5,43.5 - parent: 2 - uid: 11651 components: - type: Transform @@ -57866,11 +64081,6 @@ entities: - type: Transform pos: 80.5,51.5 parent: 2 - - uid: 11666 - components: - - type: Transform - pos: 82.5,51.5 - parent: 2 - uid: 11667 components: - type: Transform @@ -57916,11 +64126,6 @@ entities: - type: Transform pos: 78.5,38.5 parent: 2 - - uid: 11676 - components: - - type: Transform - pos: 79.5,38.5 - parent: 2 - uid: 11677 components: - type: Transform @@ -57984,32 +64189,7 @@ entities: - uid: 11689 components: - type: Transform - pos: 7.5,47.5 - parent: 2 - - uid: 11690 - components: - - type: Transform - pos: 6.5,47.5 - parent: 2 - - uid: 11691 - components: - - type: Transform - pos: 5.5,46.5 - parent: 2 - - uid: 11692 - components: - - type: Transform - pos: 5.5,45.5 - parent: 2 - - uid: 11693 - components: - - type: Transform - pos: 5.5,44.5 - parent: 2 - - uid: 11694 - components: - - type: Transform - pos: 5.5,43.5 + pos: -1.5,16.5 parent: 2 - uid: 11695 components: @@ -58041,6 +64221,21 @@ entities: - type: Transform pos: 10.5,-43.5 parent: 2 + - uid: 11821 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 + - uid: 11826 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 - uid: 11886 components: - type: Transform @@ -58091,6 +64286,84 @@ entities: - type: Transform pos: 45.5,-23.5 parent: 2 + - uid: 12370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 12426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,51.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,46.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + - uid: 12456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 2 + - uid: 12457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 2 + - uid: 12731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,45.5 + parent: 2 - uid: 12912 components: - type: Transform @@ -58131,300 +64404,107 @@ entities: - type: Transform pos: 41.5,-49.5 parent: 2 - - uid: 13146 + - uid: 12938 components: - type: Transform - pos: -15.5,1.5 - parent: 2 - - uid: 13147 - components: - - type: Transform - pos: -16.5,1.5 - parent: 2 - - uid: 13148 - components: - - type: Transform - pos: -17.5,1.5 - parent: 2 - - uid: 13149 - components: - - type: Transform - pos: -18.5,1.5 - parent: 2 - - uid: 13150 - components: - - type: Transform - pos: -19.5,1.5 - parent: 2 - - uid: 13152 - components: - - type: Transform - pos: -20.5,1.5 - parent: 2 - - uid: 13181 - components: - - type: Transform - pos: -21.5,1.5 - parent: 2 - - uid: 13182 - components: - - type: Transform - pos: -22.5,1.5 - parent: 2 - - uid: 13244 - components: - - type: Transform - pos: -23.5,1.5 + rot: 3.141592653589793 rad + pos: -6.5,1.5 parent: 2 - uid: 13245 components: - type: Transform - pos: -25.5,1.5 + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 parent: 2 - uid: 13246 components: - type: Transform - pos: -26.5,1.5 + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 parent: 2 - - uid: 13247 + - uid: 13251 components: - type: Transform - pos: -27.5,1.5 - parent: 2 - - uid: 13248 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 13258 - components: - - type: Transform - pos: -19.5,14.5 - parent: 2 - - uid: 13259 - components: - - type: Transform - pos: -20.5,14.5 - parent: 2 - - uid: 13260 - components: - - type: Transform - pos: -21.5,14.5 - parent: 2 - - uid: 13261 - components: - - type: Transform - pos: -22.5,14.5 - parent: 2 - - uid: 13262 - components: - - type: Transform - pos: -23.5,14.5 - parent: 2 - - uid: 13263 - components: - - type: Transform - pos: -24.5,14.5 - parent: 2 - - uid: 13264 - components: - - type: Transform - pos: -25.5,14.5 - parent: 2 - - uid: 13265 - components: - - type: Transform - pos: -26.5,14.5 - parent: 2 - - uid: 13266 - components: - - type: Transform - pos: -27.5,14.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 2 - uid: 13267 components: - type: Transform - pos: -23.5,-19.5 + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 parent: 2 - uid: 13268 components: - type: Transform - pos: -24.5,-19.5 + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 - uid: 13269 components: - type: Transform - pos: -25.5,-19.5 + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 parent: 2 - uid: 13270 components: - type: Transform - pos: -26.5,-19.5 + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 parent: 2 - - uid: 13271 + - uid: 13282 components: - type: Transform - pos: -27.5,-19.5 + rot: 3.141592653589793 rad + pos: 58.5,46.5 parent: 2 - - uid: 13272 + - uid: 13290 components: - type: Transform - pos: -27.5,-17.5 + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 parent: 2 - - uid: 13273 + - uid: 13292 components: - type: Transform - pos: -26.5,-17.5 - parent: 2 - - uid: 13274 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 2 - - uid: 13275 - components: - - type: Transform - pos: -24.5,-17.5 - parent: 2 - - uid: 13276 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 2 - - uid: 13303 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 2 - - uid: 13309 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - - uid: 13315 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - - uid: 13316 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - - uid: 13317 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 13318 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 13319 - components: - - type: Transform - pos: -30.5,-2.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 2 - uid: 13320 components: - type: Transform - pos: -30.5,-1.5 - parent: 2 - - uid: 13321 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 2 - - uid: 13322 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 2 - - uid: 13323 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 - - uid: 13324 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 2 - - uid: 13325 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 2 - - uid: 13326 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 2 - - uid: 13327 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - uid: 13328 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 13329 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 2 - - uid: 13330 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 2 - - uid: 13331 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 2 - - uid: 13332 - components: - - type: Transform - pos: -34.5,-8.5 + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 parent: 2 - uid: 13333 components: - type: Transform - pos: -34.5,-7.5 + pos: -20.5,-11.5 parent: 2 - uid: 13334 components: - type: Transform - pos: -34.5,-6.5 - parent: 2 - - uid: 13335 - components: - - type: Transform - pos: -34.5,-5.5 - parent: 2 - - uid: 13336 - components: - - type: Transform - pos: -34.5,-4.5 + pos: -20.5,-12.5 parent: 2 - uid: 13337 components: - type: Transform - pos: -34.5,-3.5 + pos: -8.5,-12.5 parent: 2 - uid: 13338 components: - type: Transform - pos: -34.5,-2.5 + pos: -8.5,-11.5 parent: 2 - - uid: 13339 + - uid: 13340 components: - type: Transform - pos: -34.5,-1.5 + pos: -25.5,-16.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: -25.5,-17.5 parent: 2 - uid: 13355 components: @@ -58646,245 +64726,791 @@ entities: - type: Transform pos: 39.5,-61.5 parent: 2 - - uid: 13656 + - uid: 13545 components: - type: Transform - anchored: False - pos: -32.5,12.5 + rot: -1.5707963267948966 rad + pos: 56.5,42.5 parent: 2 - - uid: 13657 + - uid: 13547 components: - type: Transform - anchored: False - pos: -32.5,11.5 + rot: -1.5707963267948966 rad + pos: 57.5,42.5 parent: 2 - uid: 13658 components: - type: Transform - anchored: False - pos: -32.5,10.5 - parent: 2 - - uid: 13659 - components: - - type: Transform - anchored: False - pos: -32.5,9.5 + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 parent: 2 - uid: 13660 components: - type: Transform - anchored: False - pos: -32.5,8.5 + pos: -25.5,-6.5 parent: 2 - uid: 13661 components: - type: Transform - anchored: False - pos: -32.5,7.5 + pos: -25.5,-5.5 parent: 2 - uid: 13662 components: - type: Transform - anchored: False - pos: -32.5,6.5 + pos: -25.5,-4.5 parent: 2 - uid: 13663 components: - type: Transform - anchored: False - pos: -32.5,5.5 + pos: -25.5,-7.5 parent: 2 - uid: 13664 components: - type: Transform - anchored: False - pos: -32.5,3.5 + pos: -27.5,-21.5 parent: 2 - uid: 13665 components: - type: Transform - anchored: False - pos: -32.5,2.5 + pos: -26.5,-21.5 parent: 2 - uid: 13666 components: - type: Transform - anchored: False - pos: -32.5,1.5 + pos: -25.5,-21.5 parent: 2 - uid: 13667 components: - type: Transform - anchored: False - pos: -32.5,4.5 + pos: -22.5,-23.5 parent: 2 - uid: 13668 components: - type: Transform - pos: -34.5,1.5 + pos: -23.5,-23.5 parent: 2 - - uid: 13669 + - uid: 13920 components: - type: Transform - pos: -34.5,2.5 + rot: 1.5707963267948966 rad + pos: -23.5,3.5 parent: 2 - - uid: 13670 + - uid: 13921 components: - type: Transform - pos: -34.5,3.5 + rot: 1.5707963267948966 rad + pos: -23.5,4.5 parent: 2 - - uid: 13671 + - uid: 13922 components: - type: Transform - pos: -34.5,4.5 + rot: 1.5707963267948966 rad + pos: -23.5,5.5 parent: 2 - - uid: 13672 + - uid: 13924 components: - type: Transform - pos: -34.5,5.5 + rot: 1.5707963267948966 rad + pos: -23.5,7.5 parent: 2 - - uid: 13673 + - uid: 13925 components: - type: Transform - pos: -34.5,6.5 + rot: 1.5707963267948966 rad + pos: -23.5,8.5 parent: 2 - - uid: 13674 + - uid: 13926 components: - type: Transform - pos: -34.5,8.5 + rot: 1.5707963267948966 rad + pos: -23.5,9.5 parent: 2 - - uid: 13675 + - uid: 13927 components: - type: Transform - pos: -34.5,9.5 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 parent: 2 - - uid: 13676 + - uid: 13928 components: - type: Transform - pos: -34.5,10.5 + pos: -7.5,-7.5 parent: 2 - - uid: 13677 + - uid: 13929 components: - type: Transform - pos: -34.5,11.5 + rot: 1.5707963267948966 rad + pos: -23.5,12.5 parent: 2 - - uid: 13678 + - uid: 13930 components: - type: Transform - pos: -34.5,12.5 + rot: 1.5707963267948966 rad + pos: -25.5,2.5 parent: 2 - - uid: 13679 + - uid: 13931 components: - type: Transform - pos: -34.5,13.5 + rot: 1.5707963267948966 rad + pos: -25.5,3.5 parent: 2 - - uid: 13680 + - uid: 13932 components: - type: Transform - pos: -34.5,7.5 + rot: 1.5707963267948966 rad + pos: -25.5,4.5 parent: 2 - - uid: 13718 + - uid: 13933 components: - type: Transform - pos: -30.5,1.5 + pos: -10.5,-24.5 parent: 2 - - uid: 13719 + - uid: 13934 components: - type: Transform - pos: -30.5,2.5 + rot: 1.5707963267948966 rad + pos: -25.5,6.5 parent: 2 - - uid: 13720 + - uid: 13935 components: - type: Transform - pos: -30.5,3.5 + rot: 1.5707963267948966 rad + pos: -25.5,7.5 parent: 2 - - uid: 13721 + - uid: 13937 components: - type: Transform - pos: -30.5,4.5 + rot: 1.5707963267948966 rad + pos: -25.5,9.5 parent: 2 - - uid: 13722 + - uid: 13938 components: - type: Transform - pos: -30.5,5.5 + rot: 1.5707963267948966 rad + pos: -25.5,10.5 parent: 2 - - uid: 13723 + - uid: 13939 components: - type: Transform - pos: -30.5,6.5 + rot: 1.5707963267948966 rad + pos: -25.5,11.5 parent: 2 - - uid: 13724 + - uid: 13940 components: - type: Transform - pos: -30.5,7.5 + rot: 1.5707963267948966 rad + pos: -25.5,12.5 parent: 2 - - uid: 13725 + - uid: 13942 components: - type: Transform - pos: -30.5,9.5 + rot: 1.5707963267948966 rad + pos: -25.5,14.5 parent: 2 - - uid: 13726 + - uid: 13943 components: - type: Transform - pos: -30.5,10.5 + rot: 1.5707963267948966 rad + pos: -23.5,14.5 parent: 2 - - uid: 13727 + - uid: 13944 components: - type: Transform - pos: -30.5,8.5 + rot: 1.5707963267948966 rad + pos: -23.5,13.5 parent: 2 - - uid: 13728 + - uid: 13946 components: - type: Transform - pos: -30.5,11.5 + pos: -9.5,-24.5 parent: 2 - - uid: 13729 + - uid: 13947 components: - type: Transform - pos: -30.5,12.5 + pos: -13.5,-21.5 parent: 2 - - uid: 13730 + - uid: 13948 components: - type: Transform - pos: -30.5,13.5 + pos: -14.5,-21.5 + parent: 2 + - uid: 13949 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 13950 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 13953 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 13954 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 13955 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 14073 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,22.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,23.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,24.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,24.5 + parent: 2 + - uid: 14159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,24.5 + parent: 2 + - uid: 14196 + components: + - type: Transform + pos: 77.5,20.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,31.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,30.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,29.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,28.5 + parent: 2 + - uid: 14299 + components: + - type: Transform + pos: 85.5,35.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + pos: 86.5,35.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + pos: 85.5,25.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: 89.5,25.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: 90.5,25.5 + parent: 2 + - uid: 14319 + components: + - type: Transform + pos: 89.5,35.5 + parent: 2 + - uid: 14320 + components: + - type: Transform + pos: 90.5,35.5 + parent: 2 + - uid: 14326 + components: + - type: Transform + pos: 79.5,22.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + pos: 80.5,22.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + pos: 74.5,26.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + pos: 75.5,26.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + pos: 76.5,26.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + pos: 77.5,26.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + pos: 78.5,26.5 + parent: 2 + - uid: 14336 + components: + - type: Transform + pos: 74.5,34.5 + parent: 2 + - uid: 14337 + components: + - type: Transform + pos: 75.5,34.5 + parent: 2 + - uid: 14338 + components: + - type: Transform + pos: 76.5,34.5 + parent: 2 + - uid: 14339 + components: + - type: Transform + pos: 77.5,34.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,36.5 + parent: 2 + - uid: 14409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,35.5 + parent: 2 + - uid: 14508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,28.5 + parent: 2 + - uid: 14512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,32.5 + parent: 2 + - uid: 14514 + components: + - type: Transform + pos: 95.5,31.5 + parent: 2 + - uid: 14516 + components: + - type: Transform + pos: 93.5,31.5 + parent: 2 + - uid: 14517 + components: + - type: Transform + pos: 93.5,30.5 + parent: 2 + - uid: 14518 + components: + - type: Transform + pos: 93.5,29.5 + parent: 2 + - uid: 14520 + components: + - type: Transform + pos: 95.5,29.5 + parent: 2 + - uid: 14591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,35.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,25.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,34.5 + parent: 2 + - uid: 14623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,25.5 + parent: 2 + - uid: 14762 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 14780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,45.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,45.5 + parent: 2 + - uid: 14782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,45.5 + parent: 2 + - uid: 14784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 2 + - uid: 14787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,51.5 + parent: 2 + - uid: 14788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,51.5 + parent: 2 + - uid: 14789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,51.5 + parent: 2 + - uid: 14790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,51.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: 36.5,52.5 + parent: 2 + - uid: 14793 + components: + - type: Transform + pos: 48.5,51.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 14796 + components: + - type: Transform + pos: 39.5,47.5 + parent: 2 + - uid: 14797 + components: + - type: Transform + pos: 40.5,47.5 + parent: 2 + - uid: 14800 + components: + - type: Transform + pos: 101.5,35.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + pos: 101.5,34.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + pos: 101.5,25.5 + parent: 2 + - uid: 14803 + components: + - type: Transform + pos: 101.5,26.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + pos: 101.5,27.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + pos: 101.5,29.5 + parent: 2 + - uid: 14806 + components: + - type: Transform + pos: 101.5,30.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + pos: 101.5,33.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + pos: 97.5,24.5 + parent: 2 + - uid: 14820 + components: + - type: Transform + pos: 91.5,24.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + pos: 91.5,36.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + pos: 97.5,36.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + pos: 50.5,42.5 + parent: 2 + - uid: 14829 + components: + - type: Transform + pos: 53.5,44.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + pos: 55.5,44.5 + parent: 2 + - uid: 14832 + components: + - type: Transform + pos: 56.5,44.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 14840 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 14841 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: 62.5,38.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 + - uid: 14847 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,25.5 + parent: 2 + - uid: 14970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,41.5 + parent: 2 + - uid: 14978 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,43.5 + parent: 2 + - uid: 14985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,43.5 parent: 2 - proto: GrilleBroken entities: - - uid: 6 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-21.5 - parent: 2 - - uid: 192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-20.5 - parent: 2 - - uid: 239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-21.5 - parent: 2 - - uid: 242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 2 - uid: 1247 components: - type: Transform pos: 35.5,-58.5 parent: 2 - - uid: 1335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 2 - uid: 2401 components: - type: Transform @@ -58900,11 +65526,166 @@ entities: - type: Transform pos: 23.5,-59.5 parent: 2 - - uid: 5966 + - uid: 5352 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 7603 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-20.5 + pos: 1.5,39.5 + parent: 2 + - uid: 10978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 2 + - uid: 14785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,45.5 + parent: 2 + - uid: 15045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 +- proto: GrilleSpawner + entities: + - uid: 69 + components: + - type: Transform + pos: 16.5,47.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + pos: 9.5,46.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + pos: 91.5,43.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + pos: 82.5,51.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + pos: 79.5,38.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - uid: 13923 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + pos: -25.5,13.5 + parent: 2 + - uid: 13945 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 14783 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 + - uid: 14786 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - uid: 14792 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 14795 + components: + - type: Transform + pos: 38.5,47.5 + parent: 2 + - uid: 14798 + components: + - type: Transform + pos: 73.5,51.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: 101.5,32.5 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: 101.5,28.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + pos: 5.5,43.5 parent: 2 - proto: GunSafeLaserCarbine entities: @@ -58962,6 +65743,11 @@ entities: parent: 2 - proto: HandLabeler entities: + - uid: 2291 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 - uid: 5319 components: - type: Transform @@ -58974,10 +65760,10 @@ entities: parent: 2 - proto: HarmonicaInstrument entities: - - uid: 2957 + - uid: 13630 components: - type: Transform - pos: 39.821617,32.534893 + pos: 56.5,31.5 parent: 2 - proto: HarpInstrument entities: @@ -59039,18 +65825,24 @@ entities: - type: Transform pos: 18.5,38.5 parent: 2 - - uid: 13591 + - uid: 14242 components: - type: Transform - pos: 56.5,28.5 + pos: 87.5,30.5 parent: 2 - - uid: 13592 + - uid: 14243 components: - type: Transform - pos: 56.5,32.5 + pos: 83.5,30.5 parent: 2 - proto: HospitalCurtainsOpen entities: + - uid: 3192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,32.5 + parent: 2 - uid: 4682 components: - type: Transform @@ -59141,6 +65933,19 @@ entities: - type: Transform pos: 14.5,16.5 parent: 2 + - uid: 13639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,40.5 + parent: 2 +- proto: HydroponicsToolClippers + entities: + - uid: 3185 + components: + - type: Transform + pos: 56.15973,41.601078 + parent: 2 - proto: HydroponicsToolHatchet entities: - uid: 11125 @@ -59150,33 +65955,25 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: + - uid: 3186 + components: + - type: Transform + pos: 54.460526,36.592915 + parent: 2 - uid: 6755 components: - type: Transform pos: 41.470776,-6.4772377 parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 13629 + components: + - type: Transform + pos: 54.56469,36.655457 + parent: 2 - proto: hydroponicsTray entities: - - uid: 2300 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 2301 - components: - - type: Transform - pos: 36.5,33.5 - parent: 2 - - uid: 2302 - components: - - type: Transform - pos: 38.5,34.5 - parent: 2 - - uid: 2303 - components: - - type: Transform - pos: 38.5,33.5 - parent: 2 - uid: 6665 components: - type: Transform @@ -59227,6 +66024,26 @@ entities: - type: Transform pos: 41.5,-4.5 parent: 2 + - uid: 13633 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 + - uid: 13634 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 13637 + components: + - type: Transform + pos: 54.5,38.5 + parent: 2 - proto: IDComputerCircuitboard entities: - uid: 12659 @@ -59275,6 +66092,31 @@ entities: - type: Transform pos: 17.552685,41.54155 parent: 2 +- proto: Intellicard + entities: + - uid: 14565 + components: + - type: Transform + pos: 89.5,32.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + pos: 90.5,32.5 + parent: 2 +- proto: IntercomAll + entities: + - uid: 14558 + components: + - type: Transform + pos: 94.5,31.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,29.5 + parent: 2 - proto: IntercomCommand entities: - uid: 4587 @@ -59310,12 +66152,6 @@ entities: - type: Transform pos: 16.5,11.5 parent: 2 - - uid: 7816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-15.5 - parent: 2 - uid: 8986 components: - type: Transform @@ -59350,6 +66186,12 @@ entities: parent: 2 - proto: IntercomSecurity entities: + - uid: 2565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,34.5 + parent: 2 - uid: 7582 components: - type: Transform @@ -59363,6 +66205,12 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,25.5 parent: 2 + - uid: 12092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 2 - proto: JanitorialTrolley entities: - uid: 12234 @@ -59382,6 +66230,13 @@ entities: - type: Transform pos: 8.484015,-9.496899 parent: 2 +- proto: JetpackSecurityFilled + entities: + - uid: 9478 + components: + - type: Transform + pos: 38.348988,28.699009 + parent: 2 - proto: KitchenElectricGrill entities: - uid: 13167 @@ -59403,11 +66258,6 @@ entities: - type: Transform pos: 35.5,-10.5 parent: 2 - - uid: 2307 - components: - - type: Transform - pos: 37.5,36.5 - parent: 2 - uid: 8860 components: - type: Transform @@ -59418,13 +66268,13 @@ entities: - type: Transform pos: 76.5,5.5 parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 2636 + - uid: 13613 components: - type: Transform - pos: 40.5,34.5 + pos: 54.5,41.5 parent: 2 +- proto: KitchenReagentGrinder + entities: - uid: 3968 components: - type: Transform @@ -59435,6 +66285,11 @@ entities: - type: Transform pos: 49.5,-6.5 parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 - proto: KitchenSpike entities: - uid: 364 @@ -59442,13 +66297,6 @@ entities: - type: Transform pos: 31.5,-12.5 parent: 2 -- proto: KnifePlastic - entities: - - uid: 3460 - components: - - type: Transform - pos: 40.183743,34.526638 - parent: 2 - proto: Lamp entities: - uid: 5087 @@ -59456,6 +66304,11 @@ entities: - type: Transform pos: 30.398613,6.824299 parent: 2 + - uid: 14146 + components: + - type: Transform + pos: 71.524376,22.947851 + parent: 2 - proto: LampBanana entities: - uid: 9601 @@ -59518,11 +66371,27 @@ entities: parent: 2 - proto: LampInterrogator entities: - - uid: 8436 + - uid: 13567 components: - type: Transform - pos: 30.526884,29.884686 + pos: 40.512142,35.84228 parent: 2 + - type: HandheldLight + toggleActionEntity: 13568 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 13568 + - type: Physics + canCollide: True + - type: ActionsContainer - proto: LargeBeaker entities: - uid: 5323 @@ -59539,10 +66408,10 @@ entities: parent: 2 - proto: LiveLetLiveCircuitBoard entities: - - uid: 13753 + - uid: 14280 components: - type: Transform - pos: 52.427402,31.435076 + pos: 84.53704,28.473265 parent: 2 - proto: LockerAtmosphericsFilledHardsuit entities: @@ -59622,6 +66491,11 @@ entities: - type: Transform pos: 38.5,-14.5 parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 2 - uid: 12352 components: - type: Transform @@ -59793,10 +66667,10 @@ entities: parent: 2 - proto: LockerQuarterMasterFilled entities: - - uid: 2149 + - uid: 8104 components: - type: Transform - pos: 11.5,30.5 + pos: 9.5,19.5 parent: 2 - proto: LockerResearchDirectorFilled entities: @@ -59825,15 +66699,15 @@ entities: - 0 - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 7962 + - uid: 705 components: - type: Transform - pos: 9.5,17.5 + pos: 6.5,30.5 parent: 2 - - uid: 7963 + - uid: 8202 components: - type: Transform - pos: 9.5,18.5 + pos: 7.5,30.5 parent: 2 - proto: LockerScienceFilled entities: @@ -59861,20 +66735,20 @@ entities: parent: 2 - proto: LockerSecurityFilled entities: - - uid: 2468 + - uid: 8441 components: - type: Transform - pos: 37.5,17.5 + pos: 29.5,30.5 parent: 2 - - uid: 2469 + - uid: 8443 components: - type: Transform - pos: 38.5,17.5 + pos: 30.5,30.5 parent: 2 - - uid: 2470 + - uid: 13580 components: - type: Transform - pos: 39.5,17.5 + pos: 31.5,30.5 parent: 2 - proto: LockerWallMedicalFilled entities: @@ -59883,12 +66757,12 @@ entities: - type: Transform pos: 46.5,5.5 parent: 2 -- proto: LockerWardenFilledHardsuit +- proto: LockerWardenFilled entities: - - uid: 7678 + - uid: 11210 components: - type: Transform - pos: 38.5,23.5 + pos: 37.5,19.5 parent: 2 - proto: LockerWeldingSuppliesFilled entities: @@ -60027,6 +66901,11 @@ entities: - type: Transform pos: 4.5,-23.5 parent: 2 + - uid: 14072 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 - proto: MaintenanceWeaponSpawner entities: - uid: 12285 @@ -60062,13 +66941,23 @@ entities: parent: 2 - proto: MechEquipmentGrabberSmall entities: - - uid: 13763 + - uid: 14752 components: - type: Transform - pos: 8.491839,32.52443 + pos: 15.466128,24.582924 parent: 2 - proto: MedicalBed entities: + - uid: 1705 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 62.5,-4.5 + parent: 2 - uid: 4978 components: - type: Transform @@ -60094,16 +66983,6 @@ entities: - type: Transform pos: 62.5,-10.5 parent: 2 - - uid: 11820 - components: - - type: Transform - pos: 66.5,4.5 - parent: 2 - - uid: 11821 - components: - - type: Transform - pos: 60.5,4.5 - parent: 2 - proto: MedicalTechFab entities: - uid: 9369 @@ -60214,11 +67093,6 @@ entities: - type: Transform pos: 10.5,14.5 parent: 2 - - uid: 27 - components: - - type: Transform - pos: 40.5,36.5 - parent: 2 - uid: 1532 components: - type: Transform @@ -60386,16 +67260,31 @@ entities: - type: Transform pos: 32.5,-27.5 parent: 2 - - uid: 5746 + - uid: 4815 components: - type: Transform - pos: 49.5,-13.5 + pos: 32.5,-46.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + pos: 46.5,-15.5 parent: 2 - uid: 10442 components: - type: Transform pos: 58.5,11.5 parent: 2 + - uid: 13968 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 - proto: NitrousOxideCanister entities: - uid: 4334 @@ -60405,10 +67294,10 @@ entities: parent: 2 - proto: NTDefaultCircuitBoard entities: - - uid: 13754 + - uid: 14281 components: - type: Transform - pos: 52.427402,31.3257 + pos: 86.43288,28.772083 parent: 2 - proto: NuclearBomb entities: @@ -60419,10 +67308,10 @@ entities: parent: 2 - proto: NutimovCircuitBoard entities: - - uid: 13755 + - uid: 14282 components: - type: Transform - pos: 52.427402,31.23195 + pos: 86.53704,28.660894 parent: 2 - proto: OperatingTable entities: @@ -60451,24 +67340,12 @@ entities: - type: Transform pos: 55.5,9.5 parent: 2 -- proto: OreBox - entities: - - uid: 13731 - components: - - type: Transform - pos: -17.5,17.5 - parent: 2 - - uid: 13764 - components: - - type: Transform - pos: 8.5,15.5 - parent: 2 - proto: OreProcessor entities: - - uid: 12839 + - uid: 7673 components: - type: Transform - pos: 9.5,20.5 + pos: 9.5,29.5 parent: 2 - proto: OxygenCanister entities: @@ -60492,26 +67369,26 @@ entities: - type: Transform pos: 32.5,-28.5 parent: 2 - - uid: 5745 - components: - - type: Transform - pos: 50.5,-13.5 - parent: 2 - uid: 6424 components: - type: Transform pos: 46.5,7.5 parent: 2 - - uid: 7969 + - uid: 7966 components: - type: Transform - pos: 5.5,19.5 + pos: 31.5,-46.5 parent: 2 - uid: 9620 components: - type: Transform pos: 47.5,2.5 parent: 2 + - uid: 9902 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 - uid: 10314 components: - type: Transform @@ -60522,11 +67399,26 @@ entities: - type: Transform pos: 58.5,10.5 parent: 2 + - uid: 11650 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 - uid: 12997 components: - type: Transform pos: 34.5,-44.5 parent: 2 + - uid: 13970 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + pos: 82.5,27.5 + parent: 2 - proto: OxygenTankFilled entities: - uid: 5720 @@ -60542,7 +67434,22 @@ entities: - uid: 10847 components: - type: Transform - pos: 45.502346,27.566444 + pos: 44.5341,28.548758 + parent: 2 + - type: GasTank + toggleActionEntity: 6197 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6197 +- proto: PackPaperRollingFilters + entities: + - uid: 14654 + components: + - type: Transform + pos: 55.52354,31.733475 parent: 2 - proto: PaintingMonkey entities: @@ -60574,10 +67481,17 @@ entities: parent: 2 - proto: PaladinCircuitBoard entities: - - uid: 13757 + - uid: 14283 components: - type: Transform - pos: 52.427402,31.028826 + pos: 86.43288,28.584454 + parent: 2 +- proto: Paper + entities: + - uid: 15000 + components: + - type: Transform + pos: 51.50651,4.646573 parent: 2 - proto: PaperBin10 entities: @@ -60664,35 +67578,20 @@ entities: - type: Transform pos: 17.877897,-26.451574 parent: 2 + - uid: 9708 + components: + - type: Transform + pos: 5.4799275,40.593884 + parent: 2 - uid: 11126 components: - type: Transform pos: 54.520523,-14.325092 parent: 2 - - uid: 13701 + - uid: 14760 components: - type: Transform - pos: 9.65173,15.441351 - parent: 2 - - uid: 13702 - components: - - type: Transform - pos: 9.65173,15.441351 - parent: 2 - - uid: 13703 - components: - - type: Transform - pos: 9.65173,15.441351 - parent: 2 - - uid: 13704 - components: - - type: Transform - pos: 9.65173,15.441351 - parent: 2 - - uid: 13705 - components: - - type: Transform - pos: 9.65173,15.441351 + pos: 5.5,31.5 parent: 2 - proto: Pen entities: @@ -60711,6 +67610,11 @@ entities: - type: Transform pos: 23.446625,15.655876 parent: 2 + - uid: 7761 + components: + - type: Transform + pos: 39.66111,17.754585 + parent: 2 - uid: 11973 components: - type: Transform @@ -60746,6 +67650,16 @@ entities: - type: Transform pos: 63.3999,10.027362 parent: 2 + - uid: 14632 + components: + - type: Transform + pos: 74.38532,22.554312 + parent: 2 + - uid: 15001 + components: + - type: Transform + pos: 51.110676,4.5944533 + parent: 2 - proto: PersonalAI entities: - uid: 7414 @@ -60763,6 +67677,13 @@ entities: - type: Transform pos: 70.51922,36.549946 parent: 2 + - uid: 13621 + components: + - type: Transform + parent: 13620 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: PhoneInstrument entities: - uid: 7008 @@ -60780,10 +67701,11 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 8255 + - uid: 14759 components: - type: Transform - pos: 9.562899,15.659067 + rot: 1.5707963267948966 rad + pos: 5.5,31.5 parent: 2 - proto: PlantBGoneSpray entities: @@ -60830,44 +67752,6 @@ entities: rot: -1.5707963267948966 rad pos: 78.5,-7.5 parent: 2 - - uid: 7722 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 7753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,30.5 - parent: 2 - - uid: 7754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,28.5 - parent: 2 - - uid: 7755 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 7756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,26.5 - parent: 2 - - uid: 7759 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 7760 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - uid: 7794 components: - type: Transform @@ -60878,6 +67762,12 @@ entities: - type: Transform pos: 76.5,-5.5 parent: 2 + - uid: 10135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 - uid: 12081 components: - type: Transform @@ -60890,64 +67780,67 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,11.5 parent: 2 + - uid: 12270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 7707 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 368 + - uid: 451 components: - type: Transform - pos: 6.5,27.5 + pos: 7.5,35.5 parent: 2 - - uid: 371 + - uid: 5576 components: - type: Transform - pos: 4.5,23.5 + pos: 5.5,27.5 parent: 2 - - uid: 482 + - uid: 5577 components: - type: Transform - pos: 3.5,-17.5 - parent: 2 - - uid: 483 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 2 - - uid: 484 - components: - - type: Transform - pos: 4.5,-14.5 + pos: 5.5,23.5 parent: 2 - uid: 5874 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 7460 + - uid: 7552 components: - type: Transform - pos: 6.5,23.5 + pos: 3.5,27.5 parent: 2 - - uid: 7461 + - uid: 8229 components: - type: Transform - pos: 4.5,27.5 + pos: 3.5,23.5 parent: 2 - - uid: 7668 + - uid: 14767 components: - type: Transform - pos: 6.5,15.5 - parent: 2 - - uid: 7852 - components: - - type: Transform - pos: 4.5,15.5 + pos: 7.5,36.5 parent: 2 - proto: PlayerStationAi entities: - - uid: 13752 + - uid: 14506 components: - type: Transform - pos: 56.5,35.5 + pos: 94.5,30.5 parent: 2 - proto: Plunger entities: @@ -60982,6 +67875,13 @@ entities: - type: Transform pos: 6.6388106,-13.475947 parent: 2 +- proto: PlushieSpaceLizard + entities: + - uid: 7441 + components: + - type: Transform + pos: -3.4634295,-18.46823 + parent: 2 - proto: PortableFlasher entities: - uid: 8412 @@ -60996,6 +67896,11 @@ entities: - type: Transform pos: 13.5,-28.5 parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 - uid: 4181 components: - type: Transform @@ -61036,10 +67941,10 @@ entities: - type: Transform pos: 57.5,5.5 parent: 2 - - uid: 13154 + - uid: 14071 components: - type: Transform - pos: 45.5,41.5 + pos: -6.5,-23.5 parent: 2 - proto: PortableGeneratorPacman entities: @@ -61048,6 +67953,11 @@ entities: - type: Transform pos: 9.5,-31.5 parent: 2 + - uid: 14410 + components: + - type: Transform + pos: 80.5,33.5 + parent: 2 - proto: PortableScrubber entities: - uid: 4977 @@ -61072,13 +67982,6 @@ entities: - type: Transform pos: 30.5,-22.5 parent: 2 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 13105 - components: - - type: Transform - pos: 10.5,16.5 - parent: 2 - proto: PosterContrabandClown entities: - uid: 11021 @@ -61093,6 +67996,12 @@ entities: - type: Transform pos: 58.5,-16.5 parent: 2 + - uid: 14084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,34.5 + parent: 2 - proto: PosterContrabandEAT entities: - uid: 6763 @@ -61142,12 +68051,13 @@ entities: - type: Transform pos: 40.5,-2.5 parent: 2 -- proto: PosterContrabandWaffleCorp +- proto: PosterLegit12Gauge entities: - - uid: 13091 + - uid: 8434 components: - type: Transform - pos: 42.5,27.5 + rot: 1.5707963267948966 rad + pos: 37.5,27.5 parent: 2 - proto: PosterLegit50thAnniversaryVintageReprint entities: @@ -61165,10 +68075,10 @@ entities: parent: 2 - proto: PosterLegitCarpMount entities: - - uid: 12833 + - uid: 7 components: - type: Transform - pos: 17.5,25.5 + pos: 18.5,25.5 parent: 2 - proto: PosterLegitCleanliness entities: @@ -61192,6 +68102,14 @@ entities: - type: Transform pos: 68.5,-14.5 parent: 2 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 14643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,34.5 + parent: 2 - proto: PosterLegitEnlist entities: - uid: 13104 @@ -61267,21 +68185,6 @@ entities: - type: Transform pos: 17.5,-1.5 parent: 2 - - uid: 8157 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 2 - - uid: 8158 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 2 - - uid: 8159 - components: - - type: Transform - pos: -7.5,0.5 - parent: 2 - uid: 11092 components: - type: Transform @@ -61367,6 +68270,12 @@ entities: - type: Transform pos: 32.5,-33.5 parent: 2 + - uid: 14648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,22.5 + parent: 2 - proto: PosterLegitSafetyMothEpi entities: - uid: 13085 @@ -61374,6 +68283,11 @@ entities: - type: Transform pos: 53.5,-2.5 parent: 2 + - uid: 13111 + components: + - type: Transform + pos: 79.5,4.5 + parent: 2 - proto: PosterLegitSafetyMothHardhat entities: - uid: 13080 @@ -61443,11 +68357,6 @@ entities: parent: 2 - proto: PosterMapPacked entities: - - uid: 7744 - components: - - type: Transform - pos: -14.5,-11.5 - parent: 2 - uid: 12314 components: - type: Transform @@ -61496,29 +68405,34 @@ entities: parent: 2 - proto: PottedPlant22 entities: - - uid: 2908 - components: - - type: Transform - pos: 30.5,44.5 - parent: 2 - uid: 2909 components: - type: Transform pos: 19.5,44.5 parent: 2 -- proto: PottedPlantBioluminscent - entities: - - uid: 5046 + - uid: 12726 components: - type: Transform - pos: 51.5,4.5 + pos: 30.5,44.5 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 14998 + components: + - type: Transform + pos: 52.5,2.5 parent: 2 - proto: PottedPlantRandom entities: - - uid: 101 + - uid: 47 components: - type: Transform - pos: -21.5,-12.5 + pos: -25.5,-14.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: -7.5,-11.5 parent: 2 - uid: 2533 components: @@ -61586,6 +68500,11 @@ entities: - type: Transform pos: 3.5,13.5 parent: 2 + - uid: 11003 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 - uid: 11221 components: - type: Transform @@ -61620,6 +68539,36 @@ entities: - type: Transform pos: 58.5,-2.5 parent: 2 + - uid: 14079 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 14231 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 14232 + components: + - type: Transform + pos: 79.5,31.5 + parent: 2 + - uid: 14653 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 - proto: PottedPlantRD entities: - uid: 10662 @@ -61641,10 +68590,11 @@ entities: parent: 2 - proto: PowerCellRecharger entities: - - uid: 2829 + - uid: 2152 components: - type: Transform - pos: 11.5,21.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 2 - uid: 3948 components: @@ -61798,6 +68748,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 2 - uid: 399 components: - type: Transform @@ -61884,22 +68840,18 @@ entities: - type: Transform pos: 48.5,-23.5 parent: 2 - - uid: 2155 + - uid: 2227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,25.5 + rot: 3.141592653589793 rad + pos: 31.5,35.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2157 + - uid: 2741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 + rot: 3.141592653589793 rad + pos: -7.5,-1.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2783 components: - type: Transform @@ -61924,6 +68876,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 3277 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 - uid: 3783 components: - type: Transform @@ -61956,6 +68913,12 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-11.5 parent: 2 + - uid: 4326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 - uid: 4562 components: - type: Transform @@ -62079,6 +69042,11 @@ entities: - type: Transform pos: 51.5,-4.5 parent: 2 + - uid: 5062 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 - uid: 5080 components: - type: Transform @@ -62246,6 +69214,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,29.5 + parent: 2 - uid: 6009 components: - type: Transform @@ -62254,13 +69228,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6010 - components: - - type: Transform - pos: 43.5,0.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6011 components: - type: Transform @@ -62390,6 +69357,12 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-5.5 parent: 2 + - uid: 6863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 2 - uid: 7034 components: - type: Transform @@ -62564,12 +69537,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-14.5 - parent: 2 - uid: 7720 components: - type: Transform @@ -62578,18 +69545,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-14.5 - parent: 2 - - uid: 7724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-14.5 - parent: 2 - uid: 7726 components: - type: Transform @@ -62611,13 +69566,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7814 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7815 components: - type: Transform @@ -62625,6 +69573,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 7816 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 - uid: 7831 components: - type: Transform @@ -62641,6 +69594,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 7840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 - uid: 7850 components: - type: Transform @@ -62655,13 +69614,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7856 - components: - - type: Transform - pos: 18.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7857 components: - type: Transform @@ -62669,11 +69621,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7957 - components: - - type: Transform - pos: -6.5,0.5 - parent: 2 - uid: 7958 components: - type: Transform @@ -62706,6 +69653,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8157 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 - uid: 8266 components: - type: Transform @@ -62714,14 +69666,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8335 components: - type: Transform @@ -62769,14 +69713,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8573 components: - type: Transform @@ -62792,14 +69728,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,34.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8642 components: - type: Transform @@ -62807,12 +69735,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,18.5 - parent: 2 - uid: 9061 components: - type: Transform @@ -62854,16 +69776,6 @@ entities: rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 - - uid: 10452 - components: - - type: Transform - pos: 58.5,27.5 - parent: 2 - - uid: 10453 - components: - - type: Transform - pos: 54.5,27.5 - parent: 2 - uid: 10708 components: - type: Transform @@ -62872,14 +69784,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10928 + - uid: 10992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-39.5 + pos: 19.5,-40.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11118 components: - type: Transform @@ -62895,6 +69805,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-1.5 + parent: 2 - uid: 11791 components: - type: Transform @@ -62969,82 +69885,178 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-48.5 parent: 2 + - uid: 13321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 2 - uid: 13434 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-28.5 parent: 2 - - uid: 13602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,33.5 - parent: 2 - - uid: 13603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,33.5 - parent: 2 - uid: 13604 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,30.5 + pos: 53.5,37.5 parent: 2 - - uid: 13605 + - uid: 13683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,30.5 + pos: 19.5,24.5 parent: 2 - - uid: 13646 + - uid: 13961 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,36.5 + pos: -24.5,-15.5 parent: 2 - - uid: 13647 + - uid: 13962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-10.5 + parent: 2 + - uid: 13964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 2 + - uid: 13965 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,36.5 + pos: -22.5,-20.5 parent: 2 - - uid: 13648 + - uid: 14151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,22.5 + parent: 2 + - uid: 14412 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,41.5 + pos: 80.5,29.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,30.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,28.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + pos: 91.5,32.5 + parent: 2 + - uid: 14594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,26.5 parent: 2 - proto: PoweredlightExterior entities: - - uid: 5606 + - uid: 5664 components: - type: Transform - pos: 14.5,-44.5 - parent: 2 - - uid: 5607 - components: - - type: Transform - pos: 28.5,-46.5 - parent: 2 - - uid: 7836 + anchored: False + rot: -1.5707963267948966 rad + pos: 11.9375,38.984375 + parent: 126 + - uid: 14590 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-15.5 + pos: 47.5,42.5 parent: 2 -- proto: PoweredlightSodium + - uid: 14595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,25.5 + parent: 2 + - uid: 14597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,35.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,42.5 + parent: 2 +- proto: PoweredlightLED entities: - - uid: 7961 + - uid: 10984 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,15.5 + pos: 85.5,28.5 + parent: 2 + - uid: 10985 + components: + - type: Transform + pos: 85.5,32.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 +- proto: PoweredlightSodium + entities: + - uid: 3197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-51.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-51.5 parent: 2 - proto: PoweredSmallLight entities: + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-16.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 2 - uid: 317 components: - type: Transform @@ -63053,6 +70065,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 2 - uid: 583 components: - type: Transform @@ -63060,43 +70078,35 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 608 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 - uid: 1811 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,12.5 parent: 2 - - uid: 2292 + - uid: 2005 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,37.5 + pos: 9.5,19.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2293 - components: - - type: Transform - pos: 40.5,35.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,32.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2295 + - uid: 2149 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,33.5 + pos: 5.5,15.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2424 components: - type: Transform @@ -63127,6 +70137,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 2491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-12.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-3.5 + parent: 2 - uid: 2534 components: - type: Transform @@ -63172,14 +70194,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3409 + - uid: 2965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,30.5 + rot: 1.5707963267948966 rad + pos: 4.5,39.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,34.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 49.5,35.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 3410 components: - type: Transform @@ -63187,6 +70223,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 3432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,30.5 + parent: 2 - uid: 3447 components: - type: Transform @@ -63213,6 +70255,12 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-8.5 parent: 2 + - uid: 4403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,27.5 + parent: 2 - uid: 4438 components: - type: Transform @@ -63323,6 +70371,12 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-29.5 parent: 2 + - uid: 4637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,33.5 + parent: 2 - uid: 4813 components: - type: Transform @@ -63339,14 +70393,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,33.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4909 components: - type: Transform @@ -63431,6 +70477,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,20.5 + parent: 2 - uid: 6492 components: - type: Transform @@ -63455,14 +70507,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-11.5 parent: 2 - - uid: 6521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,28.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6659 components: - type: Transform @@ -63481,6 +70525,11 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-9.5 parent: 2 + - uid: 6820 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 - uid: 6858 components: - type: Transform @@ -63488,20 +70537,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7013 - components: - - type: Transform - pos: 6.5,32.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7015 - components: - - type: Transform - pos: 12.5,31.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7342 components: - type: Transform @@ -63544,49 +70579,9 @@ entities: - uid: 7819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,29.5 + rot: 3.141592653589793 rad + pos: 56.5,47.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,42.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7824 - components: - - type: Transform - pos: 55.5,48.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7825 - components: - - type: Transform - pos: 57.5,48.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7828 components: - type: Transform @@ -63654,43 +70649,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7968 + - uid: 7903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,18.5 + pos: -20.5,-9.5 parent: 2 - - uid: 8332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8334 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8526 + - uid: 8081 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-40.5 + pos: 5.5,35.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + pos: 58.5,32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-40.5 + rot: 3.141592653589793 rad + pos: 18.5,-18.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8528 components: - type: Transform @@ -63721,13 +70701,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8570 - components: - - type: Transform - pos: 36.5,31.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8571 components: - type: Transform @@ -63833,6 +70806,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11018 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 - uid: 11097 components: - type: Transform @@ -63867,13 +70845,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,3.5 parent: 2 - - uid: 11521 - components: - - type: Transform - pos: 54.5,-17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11522 components: - type: Transform @@ -63932,6 +70903,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 12283 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 - uid: 12354 components: - type: Transform @@ -63967,10 +70943,28 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-47.5 parent: 2 - - uid: 13606 + - uid: 13330 components: - type: Transform - pos: 56.5,38.5 + rot: 3.141592653589793 rad + pos: -26.5,-22.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,37.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,40.5 parent: 2 - uid: 13716 components: @@ -63978,6 +70972,64 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-20.5 parent: 2 + - uid: 13782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-23.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,33.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 14149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,20.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,27.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,33.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 2 - proto: Protolathe entities: - uid: 5305 @@ -64006,6 +71058,11 @@ entities: - type: Transform pos: -0.5,-5.5 parent: 2 + - uid: 553 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 - uid: 826 components: - type: Transform @@ -64016,6 +71073,11 @@ entities: - type: Transform pos: 25.5,-29.5 parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 - uid: 1462 components: - type: Transform @@ -64066,6 +71128,16 @@ entities: - type: Transform pos: 33.5,-17.5 parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 - uid: 5342 components: - type: Transform @@ -64107,25 +71179,16 @@ entities: - type: Transform pos: 38.5,28.5 parent: 2 - - uid: 7970 + - uid: 7680 components: - type: Transform - pos: 9.5,15.5 + pos: 31.5,-48.5 parent: 2 - - uid: 8164 + - uid: 8173 components: - type: Transform - pos: 8.5,32.5 - parent: 2 - - uid: 8817 - components: - - type: Transform - pos: 72.5,21.5 - parent: 2 - - uid: 8934 - components: - - type: Transform - pos: 69.5,21.5 + rot: -1.5707963267948966 rad + pos: 16.5,-42.5 parent: 2 - uid: 9017 components: @@ -64143,6 +71206,12 @@ entities: - type: Transform pos: 27.5,5.5 parent: 2 + - uid: 9640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 - uid: 10303 components: - type: Transform @@ -64183,16 +71252,6 @@ entities: - type: Transform pos: 65.5,11.5 parent: 2 - - uid: 10846 - components: - - type: Transform - pos: 45.5,27.5 - parent: 2 - - uid: 10852 - components: - - type: Transform - pos: 45.5,30.5 - parent: 2 - uid: 11409 components: - type: Transform @@ -64208,37 +71267,59 @@ entities: - type: Transform pos: 23.5,4.5 parent: 2 - - uid: 13002 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 2 - uid: 13445 components: - type: Transform pos: 43.5,-35.5 parent: 2 + - uid: 13560 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 2 + - uid: 14408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,34.5 + parent: 2 - proto: RadiationCollectorFullTank entities: - - uid: 1042 + - uid: 8166 components: - type: Transform - pos: 17.5,-42.5 + pos: 28.5,-52.5 parent: 2 - - uid: 1177 + - uid: 8216 components: - type: Transform - pos: 16.5,-42.5 + pos: 14.5,-50.5 parent: 2 - - uid: 1182 + - uid: 8217 components: - type: Transform - pos: 26.5,-42.5 + pos: 14.5,-51.5 parent: 2 - - uid: 1211 + - uid: 8218 components: - type: Transform - pos: 25.5,-42.5 + pos: 28.5,-50.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + pos: 28.5,-51.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + pos: 14.5,-52.5 parent: 2 - proto: RadioHandheld entities: @@ -64325,6 +71406,21 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-8.5 parent: 2 + - uid: 13640 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 + - uid: 13642 + components: + - type: Transform + pos: 55.5,36.5 + parent: 2 - proto: RandomArcade entities: - uid: 8653 @@ -64373,27 +71469,79 @@ entities: - type: Transform pos: 19.5,17.5 parent: 2 + - uid: 12820 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 - proto: RandomPosterAny entities: + - uid: 2270 + components: + - type: Transform + pos: 79.5,9.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,33.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 - uid: 11520 components: - type: Transform pos: 14.5,-22.5 parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 11164 + - uid: 14779 components: - type: Transform - pos: 8.5,33.5 + rot: 3.141592653589793 rad + pos: 10.5,31.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 2271 + components: + - type: Transform + pos: 69.5,41.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 40.5,39.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: 53.5,41.5 parent: 2 - uid: 11176 components: - type: Transform pos: 14.5,6.5 parent: 2 + - uid: 14750 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 - proto: RandomPosterLegit entities: + - uid: 2566 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 - uid: 7573 components: - type: Transform @@ -64404,6 +71552,11 @@ entities: - type: Transform pos: 20.5,2.5 parent: 2 + - uid: 8635 + components: + - type: Transform + pos: 68.5,37.5 + parent: 2 - uid: 8670 components: - type: Transform @@ -64424,6 +71577,21 @@ entities: - type: Transform pos: 57.5,4.5 parent: 2 + - uid: 14749 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 14955 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: 75.5,5.5 + parent: 2 - proto: RandomSoap entities: - uid: 8162 @@ -64436,8 +71604,18 @@ entities: - type: Transform pos: 78.5,7.5 parent: 2 + - uid: 14652 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 - proto: RandomSpawner entities: + - uid: 3433 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 - uid: 5688 components: - type: Transform @@ -64453,6 +71631,11 @@ entities: - type: Transform pos: 15.5,-25.5 parent: 2 + - uid: 8932 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 - uid: 9308 components: - type: Transform @@ -64493,16 +71676,6 @@ entities: - type: Transform pos: 68.5,11.5 parent: 2 - - uid: 11882 - components: - - type: Transform - pos: 70.5,29.5 - parent: 2 - - uid: 11883 - components: - - type: Transform - pos: 70.5,28.5 - parent: 2 - uid: 11884 components: - type: Transform @@ -64621,18 +71794,18 @@ entities: parent: 2 - proto: Recycler entities: + - uid: 829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,34.5 + parent: 2 - uid: 5855 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-29.5 parent: 2 - - uid: 12229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,16.5 - parent: 2 - proto: ReinforcedPlasmaWindow entities: - uid: 321 @@ -64676,16 +71849,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-33.5 parent: 2 - - uid: 2356 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 2362 - components: - - type: Transform - pos: 37.5,26.5 - parent: 2 - uid: 2363 components: - type: Transform @@ -64696,11 +71859,6 @@ entities: - type: Transform pos: 41.5,25.5 parent: 2 - - uid: 2366 - components: - - type: Transform - pos: 37.5,28.5 - parent: 2 - uid: 2411 components: - type: Transform @@ -64751,6 +71909,18 @@ entities: - type: Transform pos: 64.5,26.5 parent: 2 + - uid: 12296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,29.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,29.5 + parent: 2 - uid: 12984 components: - type: Transform @@ -64778,6 +71948,12 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 - uid: 13 components: - type: Transform @@ -64788,21 +71964,6 @@ entities: - type: Transform pos: -7.5,-5.5 parent: 2 - - uid: 18 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 2 - - uid: 21 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 2 - - uid: 23 - components: - - type: Transform - pos: -7.5,-2.5 - parent: 2 - uid: 25 components: - type: Transform @@ -64816,12 +71977,8 @@ entities: - uid: 46 components: - type: Transform - pos: -7.5,-8.5 - parent: 2 - - uid: 47 - components: - - type: Transform - pos: -7.5,-10.5 + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 - uid: 79 components: @@ -64833,30 +71990,11 @@ entities: - type: Transform pos: -1.5,2.5 parent: 2 - - uid: 89 + - uid: 84 components: - type: Transform - pos: -4.5,-18.5 - parent: 2 - - uid: 90 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 2 - - uid: 93 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 2 - - uid: 99 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 100 - components: - - type: Transform - pos: -6.5,-16.5 + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 parent: 2 - uid: 119 components: @@ -64883,20 +72021,10 @@ entities: - type: Transform pos: -1.5,-13.5 parent: 2 - - uid: 198 + - uid: 237 components: - type: Transform - pos: 1.5,-17.5 - parent: 2 - - uid: 199 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 2 - - uid: 233 - components: - - type: Transform - pos: -4.5,-16.5 + pos: 4.5,16.5 parent: 2 - uid: 325 components: @@ -64913,20 +72041,16 @@ entities: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 328 + - uid: 337 components: - type: Transform - pos: -22.5,-14.5 + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 parent: 2 - - uid: 329 + - uid: 341 components: - type: Transform - pos: -22.5,-13.5 - parent: 2 - - uid: 330 - components: - - type: Transform - pos: -22.5,-12.5 + pos: -11.5,2.5 parent: 2 - uid: 345 components: @@ -64936,12 +72060,8 @@ entities: - uid: 357 components: - type: Transform - pos: -15.5,-11.5 - parent: 2 - - uid: 359 - components: - - type: Transform - pos: -16.5,-11.5 + rot: -1.5707963267948966 rad + pos: -4.5,-16.5 parent: 2 - uid: 397 components: @@ -64963,11 +72083,6 @@ entities: - type: Transform pos: 55.5,12.5 parent: 2 - - uid: 433 - components: - - type: Transform - pos: 5.5,20.5 - parent: 2 - uid: 445 components: - type: Transform @@ -64988,15 +72103,11 @@ entities: - type: Transform pos: 65.5,16.5 parent: 2 - - uid: 469 + - uid: 483 components: - type: Transform - pos: -7.5,-9.5 - parent: 2 - - uid: 510 - components: - - type: Transform - pos: -8.5,-11.5 + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 parent: 2 - uid: 560 components: @@ -65013,20 +72124,28 @@ entities: - type: Transform pos: 65.5,14.5 parent: 2 + - uid: 622 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 2 + - uid: 680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 2 - uid: 689 components: - type: Transform - pos: -20.5,-11.5 - parent: 2 - - uid: 692 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 2 - - uid: 695 - components: - - type: Transform - pos: -11.5,-15.5 + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 parent: 2 - uid: 813 components: @@ -65098,6 +72217,12 @@ entities: - type: Transform pos: 10.5,-37.5 parent: 2 + - uid: 968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 2 - uid: 982 components: - type: Transform @@ -65141,7 +72266,8 @@ entities: - uid: 990 components: - type: Transform - pos: 18.5,-43.5 + rot: -1.5707963267948966 rad + pos: 4.5,31.5 parent: 2 - uid: 991 components: @@ -65153,11 +72279,6 @@ entities: - type: Transform pos: 16.5,-43.5 parent: 2 - - uid: 993 - components: - - type: Transform - pos: 18.5,-44.5 - parent: 2 - uid: 994 components: - type: Transform @@ -65183,16 +72304,6 @@ entities: - type: Transform pos: 23.5,-44.5 parent: 2 - - uid: 999 - components: - - type: Transform - pos: 24.5,-44.5 - parent: 2 - - uid: 1000 - components: - - type: Transform - pos: 24.5,-43.5 - parent: 2 - uid: 1001 components: - type: Transform @@ -65213,11 +72324,6 @@ entities: - type: Transform pos: 24.5,-41.5 parent: 2 - - uid: 1051 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - uid: 1052 components: - type: Transform @@ -65228,21 +72334,29 @@ entities: - type: Transform pos: 2.5,12.5 parent: 2 - - uid: 1105 + - uid: 1231 components: - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 1161 - components: - - type: Transform - pos: -9.5,-11.5 + rot: 3.141592653589793 rad + pos: 56.5,42.5 parent: 2 - uid: 1251 components: - type: Transform pos: 33.5,-34.5 parent: 2 + - uid: 1256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,38.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,42.5 + parent: 2 - uid: 1308 components: - type: Transform @@ -65348,6 +72462,12 @@ entities: - type: Transform pos: 0.5,1.5 parent: 2 + - uid: 1556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 - uid: 1735 components: - type: Transform @@ -65363,51 +72483,40 @@ entities: - type: Transform pos: 42.5,-14.5 parent: 2 - - uid: 1738 - components: - - type: Transform - pos: 46.5,-16.5 - parent: 2 - - uid: 1739 - components: - - type: Transform - pos: 46.5,-15.5 - parent: 2 - - uid: 1740 - components: - - type: Transform - pos: 46.5,-14.5 - parent: 2 - uid: 1808 components: - type: Transform - pos: -4.5,-17.5 + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 parent: 2 - uid: 1809 components: - type: Transform - pos: -18.5,-11.5 + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 parent: 2 - uid: 1855 components: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 2022 + - uid: 1948 components: - type: Transform - pos: -19.5,-15.5 + rot: 3.141592653589793 rad + pos: 52.5,39.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - uid: 2053 components: - type: Transform pos: 4.5,28.5 parent: 2 - - uid: 2054 - components: - - type: Transform - pos: 6.5,28.5 - parent: 2 - uid: 2055 components: - type: Transform @@ -65423,11 +72532,6 @@ entities: - type: Transform pos: 5.5,25.5 parent: 2 - - uid: 2058 - components: - - type: Transform - pos: 6.5,25.5 - parent: 2 - uid: 2059 components: - type: Transform @@ -65438,15 +72542,28 @@ entities: - type: Transform pos: 5.5,22.5 parent: 2 - - uid: 2061 + - uid: 2167 components: - type: Transform - pos: 6.5,22.5 + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 parent: 2 - - uid: 2068 + - uid: 2210 components: - type: Transform - pos: -13.5,-11.5 + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,36.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 75.5,23.5 parent: 2 - uid: 2240 components: @@ -65493,21 +72610,6 @@ entities: - type: Transform pos: 44.5,36.5 parent: 2 - - uid: 2287 - components: - - type: Transform - pos: 42.5,33.5 - parent: 2 - - uid: 2288 - components: - - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 2289 - components: - - type: Transform - pos: 42.5,31.5 - parent: 2 - uid: 2367 components: - type: Transform @@ -65563,6 +72665,12 @@ entities: - type: Transform pos: 37.5,-28.5 parent: 2 + - uid: 2736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 - uid: 2745 components: - type: Transform @@ -65808,6 +72916,18 @@ entities: - type: Transform pos: 49.5,45.5 parent: 2 + - uid: 3120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 2 - uid: 3127 components: - type: Transform @@ -65828,36 +72948,6 @@ entities: - type: Transform pos: 52.5,47.5 parent: 2 - - uid: 3131 - components: - - type: Transform - pos: 53.5,47.5 - parent: 2 - - uid: 3132 - components: - - type: Transform - pos: 54.5,47.5 - parent: 2 - - uid: 3133 - components: - - type: Transform - pos: 55.5,47.5 - parent: 2 - - uid: 3134 - components: - - type: Transform - pos: 56.5,47.5 - parent: 2 - - uid: 3135 - components: - - type: Transform - pos: 57.5,47.5 - parent: 2 - - uid: 3142 - components: - - type: Transform - pos: 47.5,40.5 - parent: 2 - uid: 3143 components: - type: Transform @@ -65873,16 +72963,6 @@ entities: - type: Transform pos: 47.5,37.5 parent: 2 - - uid: 3209 - components: - - type: Transform - pos: 58.5,47.5 - parent: 2 - - uid: 3210 - components: - - type: Transform - pos: 59.5,47.5 - parent: 2 - uid: 3211 components: - type: Transform @@ -65903,6 +72983,18 @@ entities: - type: Transform pos: 62.5,46.5 parent: 2 + - uid: 3327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 - uid: 3335 components: - type: Transform @@ -65923,25 +73015,17 @@ entities: - type: Transform pos: 53.5,49.5 parent: 2 - - uid: 3339 - components: - - type: Transform - pos: 55.5,49.5 - parent: 2 - uid: 3340 components: - type: Transform - pos: 54.5,49.5 - parent: 2 - - uid: 3343 - components: - - type: Transform - pos: 57.5,49.5 + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 parent: 2 - uid: 3344 components: - type: Transform - pos: 58.5,49.5 + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 parent: 2 - uid: 3345 components: @@ -66028,6 +73112,11 @@ entities: - type: Transform pos: 72.5,44.5 parent: 2 + - uid: 3434 + components: + - type: Transform + pos: 75.5,22.5 + parent: 2 - uid: 3479 components: - type: Transform @@ -66048,16 +73137,6 @@ entities: - type: Transform pos: 55.5,26.5 parent: 2 - - uid: 3501 - components: - - type: Transform - pos: 55.5,27.5 - parent: 2 - - uid: 3502 - components: - - type: Transform - pos: 57.5,27.5 - parent: 2 - uid: 3503 components: - type: Transform @@ -66248,6 +73327,18 @@ entities: - type: Transform pos: 33.5,-35.5 parent: 2 + - uid: 4134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,26.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 2 - uid: 4252 components: - type: Transform @@ -66264,24 +73355,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-16.5 parent: 2 - - uid: 4270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-16.5 - parent: 2 - - uid: 4271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 2 - - uid: 4272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 2 - uid: 4273 components: - type: Transform @@ -66309,6 +73382,11 @@ entities: - type: Transform pos: 45.5,-21.5 parent: 2 + - uid: 4312 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 - uid: 4327 components: - type: Transform @@ -66391,7 +73469,14 @@ entities: - uid: 4812 components: - type: Transform - pos: -13.5,-10.5 + rot: 3.141592653589793 rad + pos: 56.5,50.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,41.5 parent: 2 - uid: 5016 components: @@ -66433,11 +73518,6 @@ entities: - type: Transform pos: 64.5,-2.5 parent: 2 - - uid: 5102 - components: - - type: Transform - pos: 59.5,26.5 - parent: 2 - uid: 5128 components: - type: Transform @@ -66458,11 +73538,6 @@ entities: - type: Transform pos: 45.5,-30.5 parent: 2 - - uid: 5289 - components: - - type: Transform - pos: 4.5,19.5 - parent: 2 - uid: 5293 components: - type: Transform @@ -66528,11 +73603,6 @@ entities: - type: Transform pos: 72.5,27.5 parent: 2 - - uid: 5677 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 2 - uid: 5728 components: - type: Transform @@ -66603,52 +73673,149 @@ entities: - type: Transform pos: 42.5,-2.5 parent: 2 - - uid: 6814 + - uid: 6807 components: - type: Transform - pos: -11.5,-10.5 + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 parent: 2 - - uid: 6815 + - uid: 6810 components: - type: Transform - pos: -18.5,-15.5 + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 parent: 2 - - uid: 6821 + - uid: 6833 components: - type: Transform - pos: -18.5,-10.5 + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: -2.5,-20.5 parent: 2 - uid: 6840 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 6841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 2 - uid: 6857 components: - type: Transform pos: -5.5,2.5 parent: 2 - - uid: 6896 + - uid: 6885 components: - type: Transform - pos: -20.5,-15.5 + pos: -13.5,2.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: -9.5,2.5 parent: 2 - uid: 7664 components: - type: Transform pos: -5.5,1.5 parent: 2 + - uid: 7669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 - uid: 7765 components: - type: Transform pos: 24.5,38.5 parent: 2 + - uid: 7781 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-4.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 - uid: 8736 components: - type: Transform @@ -66859,15 +74026,10 @@ entities: - type: Transform pos: 116.5,-19.5 parent: 2 - - uid: 9571 + - uid: 9334 components: - type: Transform - pos: 6.5,19.5 - parent: 2 - - uid: 10085 - components: - - type: Transform - pos: 60.5,26.5 + pos: 43.5,40.5 parent: 2 - uid: 10086 components: @@ -66899,22 +74061,183 @@ entities: - type: Transform pos: 52.5,1.5 parent: 2 + - uid: 10768 + components: + - type: Transform + pos: 73.5,24.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 11625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 11642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,30.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,30.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,30.5 + parent: 2 - uid: 11971 components: - type: Transform pos: 45.5,-31.5 parent: 2 - - uid: 12779 + - uid: 12080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,29.5 + rot: 3.141592653589793 rad + pos: 57.5,42.5 parent: 2 - - uid: 12780 + - uid: 12421 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,29.5 + pos: -9.5,-10.5 + parent: 2 + - uid: 12431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,49.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,46.5 + parent: 2 + - uid: 12443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,46.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 12463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - uid: 12471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,46.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,46.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,31.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,1.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 parent: 2 - uid: 12979 components: @@ -66931,6 +74254,122 @@ entities: - type: Transform pos: 41.5,-49.5 parent: 2 + - uid: 13079 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,51.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-17.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 - uid: 13440 components: - type: Transform @@ -66946,6 +74385,192 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 2 + - uid: 13557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,35.5 + parent: 2 + - uid: 13558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,36.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,37.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 13657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 13829 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 2 + - uid: 13850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 2 + - uid: 13851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 2 + - uid: 13852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,24.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + pos: 75.5,24.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,30.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,29.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,31.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,28.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,35.5 + parent: 2 + - uid: 14363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,31.5 + parent: 2 + - uid: 14364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,30.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,29.5 + parent: 2 + - uid: 14368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,31.5 + parent: 2 + - uid: 14369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,29.5 + parent: 2 + - uid: 14761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,25.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 15004 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 9222 @@ -66969,22 +74594,27 @@ entities: parent: 2 - proto: RiotShield entities: - - uid: 8428 + - uid: 9883 components: - type: Transform - pos: 38.223476,28.307878 + pos: 38.328156,28.35502 parent: 2 - - uid: 8429 + - uid: 9884 components: - type: Transform - pos: 38.223476,28.307878 + pos: 38.328156,28.365444 + parent: 2 + - uid: 14664 + components: + - type: Transform + pos: 38.328156,28.365444 parent: 2 - proto: RobocopCircuitBoard entities: - - uid: 13758 + - uid: 14284 components: - type: Transform - pos: 52.427402,30.935076 + pos: 86.54398,28.473265 parent: 2 - proto: RockGuitarInstrument entities: @@ -66995,11 +74625,11 @@ entities: parent: 2 - proto: SalvageMagnet entities: - - uid: 4811 + - uid: 11666 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,16.5 + pos: 6.5,39.5 parent: 2 - proto: Saw entities: @@ -67106,45 +74736,16 @@ entities: - type: Transform pos: 23.5,19.5 parent: 2 - - uid: 13619 + - uid: 13579 components: - type: Transform - pos: 55.5,32.5 + pos: -7.5,1.5 parent: 2 - - uid: 13620 + - uid: 14563 components: - type: Transform - pos: 57.5,32.5 - parent: 2 - - uid: 13621 - components: - - type: Transform - pos: 60.5,28.5 - parent: 2 - - uid: 13622 - components: - - type: Transform - pos: 52.5,28.5 - parent: 2 - - uid: 13623 - components: - - type: Transform - pos: 54.5,40.5 - parent: 2 - - uid: 13624 - components: - - type: Transform - pos: 58.5,40.5 - parent: 2 - - uid: 13625 - components: - - type: Transform - pos: 61.5,38.5 - parent: 2 - - uid: 13626 - components: - - type: Transform - pos: 51.5,38.5 + rot: 1.5707963267948966 rad + pos: 88.5,32.5 parent: 2 - proto: Screwdriver entities: @@ -67153,24 +74754,19 @@ entities: - type: Transform pos: 57.5176,-14.309467 parent: 2 - - uid: 13707 - components: - - type: Transform - pos: 25.478437,-38.442886 - parent: 2 - proto: SecurityTechFab entities: - - uid: 1831 + - uid: 12373 components: - type: Transform - pos: 38.5,24.5 + pos: 38.5,21.5 parent: 2 - proto: SeedExtractor entities: - - uid: 2305 + - uid: 3159 components: - type: Transform - pos: 38.5,36.5 + pos: 53.5,36.5 parent: 2 - uid: 6677 components: @@ -67247,6 +74843,11 @@ entities: - type: Transform pos: 71.06963,13.620979 parent: 2 + - uid: 14581 + components: + - type: Transform + pos: 82.5,34.5 + parent: 2 - proto: SheetPlasteel entities: - uid: 1842 @@ -67403,12 +75004,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: Shovel +- proto: ShotGunCabinetFilled entities: - - uid: 8254 + - uid: 2221 components: - type: Transform - pos: 9.453524,15.534067 + rot: -1.5707963267948966 rad + pos: 40.5,18.5 + parent: 2 +- proto: Shovel + entities: + - uid: 1053 + components: + - type: Transform + pos: 5.5,31.5 parent: 2 - proto: ShuttersNormal entities: @@ -67444,11 +75053,6 @@ entities: - type: Transform pos: 36.5,-8.5 parent: 2 - - uid: 320 - components: - - type: Transform - pos: 8.5,29.5 - parent: 2 - uid: 419 components: - type: Transform @@ -67473,20 +75077,10 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 - - uid: 2087 + - uid: 2090 components: - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 2831 - components: - - type: Transform - pos: 9.5,29.5 - parent: 2 - - uid: 2990 - components: - - type: Transform - pos: 50.5,1.5 + pos: 11.5,29.5 parent: 2 - uid: 6512 components: @@ -67494,31 +75088,38 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 - - uid: 12424 + - uid: 12381 components: - type: Transform - pos: 49.5,1.5 - parent: 2 - - uid: 12425 - components: - - type: Transform - pos: 51.5,1.5 - parent: 2 - - uid: 12822 - components: - - type: Transform - pos: 28.5,20.5 - parent: 2 - - uid: 12823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 + pos: 13.5,29.5 parent: 2 - uid: 12824 components: - type: Transform - rot: 3.141592653589793 rad + rot: -1.5707963267948966 rad + pos: 28.5,17.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,18.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 13183 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 28.5,21.5 parent: 2 - uid: 13422 @@ -67607,8 +75208,85 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-33.5 parent: 2 + - uid: 13644 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + pos: 56.5,42.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,38.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,39.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - uid: 13915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - uid: 14910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 2 - proto: ShuttersRadiationOpen entities: + - uid: 449 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 - uid: 779 components: - type: Transform @@ -67619,6 +75297,26 @@ entities: - type: Transform pos: 20.5,-37.5 parent: 2 + - uid: 2044 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: 22.5,-44.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 21.5,-44.5 + parent: 2 - uid: 4502 components: - type: Transform @@ -67629,16 +75327,69 @@ entities: - type: Transform pos: 23.5,-37.5 parent: 2 -- proto: SignAi - entities: - - uid: 12242 + - uid: 4635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,28.5 + pos: 26.5,-43.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: 20.5,-44.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 + - uid: 10959 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 2 + - uid: 10999 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 2 +- proto: SignAi + entities: + - uid: 3417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,22.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,31.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 14250 + components: + - type: Transform + pos: 83.5,29.5 parent: 2 - proto: SignalButton entities: + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8103: + - Pressed: Toggle - uid: 202 components: - type: Transform @@ -67648,34 +75399,6 @@ entities: linkedPorts: 55: - Pressed: Toggle - - uid: 374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7462: - - Pressed: Toggle - - uid: 1025 - components: - - type: MetaData - name: Radiation Shutters - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 779: - - Pressed: Toggle - 780: - - Pressed: Toggle - 4502: - - Pressed: Toggle - 4503: - - Pressed: Toggle - uid: 1471 components: - type: MetaData @@ -67709,6 +75432,15 @@ entities: linkedPorts: 5124: - Pressed: Toggle + - uid: 5428 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 895: + - Pressed: Toggle - uid: 5685 components: - type: MetaData @@ -67736,52 +75468,15 @@ entities: - Pressed: Toggle 6514: - Pressed: Toggle - - uid: 6856 - components: - - type: MetaData - name: Conveyor Blast Door - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,14.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7618: - - Pressed: Toggle - - uid: 7463 + - uid: 7809 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,22.5 + pos: 5.5,22.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 384: - - Pressed: Toggle - - uid: 8163 - components: - - type: Transform - pos: 10.5,29.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2831: - - Pressed: Toggle - 320: - - Pressed: Toggle - - uid: 8288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12424: - - Pressed: Toggle - 2990: - - Pressed: Toggle - 12425: + 8067: - Pressed: Toggle - uid: 10321 components: @@ -67792,27 +75487,18 @@ entities: linkedPorts: 150: - Pressed: Toggle - - uid: 12825 + - uid: 13002 components: - type: Transform - pos: 31.772217,19.196745 + pos: 10.5,29.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2087: + 2090: - Pressed: Toggle - 12823: + 12839: - Pressed: Toggle - - uid: 12826 - components: - - type: Transform - pos: 31.756592,22.24362 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12822: - - Pressed: Toggle - 12824: + 12381: - Pressed: Toggle - uid: 13491 components: @@ -67859,6 +75545,20 @@ entities: - Pressed: Toggle 13482: - Pressed: Toggle + - uid: 14913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14912: + - Pressed: Toggle + 14910: + - Pressed: Toggle + 14911: + - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 543 @@ -67881,11 +75581,113 @@ entities: - Pressed: Toggle 1154: - Pressed: Toggle - - uid: 13594 + - uid: 3993 components: - type: Transform - pos: 55.5,35.5 + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4636: + - Pressed: Toggle + 4635: + - Pressed: Toggle + 3972: + - Pressed: Toggle + 3241: + - Pressed: Toggle + 3992: + - Pressed: Toggle + 7808: + - Pressed: Toggle + 8031: + - Pressed: Toggle + 10999: + - Pressed: Toggle + 10959: + - Pressed: Toggle + - uid: 11001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 449: + - Pressed: Toggle + 2044: + - Pressed: Toggle + 779: + - Pressed: Toggle + 780: + - Pressed: Toggle + 4502: + - Pressed: Toggle + 4503: + - Pressed: Toggle + - uid: 13654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13915: + - Pressed: Toggle + - uid: 13655 + components: + - type: MetaData + name: perma shutters + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13650: + - Pressed: Toggle + 13651: + - Pressed: Toggle + 13652: + - Pressed: Toggle + 13644: + - Pressed: Toggle + 13645: + - Pressed: Toggle + 13646: + - Pressed: Toggle + 13647: + - Pressed: Toggle + 13648: + - Pressed: Toggle + 13649: + - Pressed: Toggle + - uid: 14742 + components: + - type: Transform + pos: 31.77084,21.456566 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12825: + - Pressed: Toggle + 13183: + - Pressed: Toggle + - uid: 14924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.777786,17.53082 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12826: + - Pressed: Toggle + 12824: + - Pressed: Toggle - proto: SignAnomaly entities: - uid: 5066 @@ -67902,10 +75704,11 @@ entities: parent: 2 - proto: SignArmory entities: - - uid: 11210 + - uid: 7678 components: - type: Transform - pos: 42.47835,25.502422 + rot: -1.5707963267948966 rad + pos: 37.5,23.5 parent: 2 - proto: SignAtmos entities: @@ -67950,10 +75753,11 @@ entities: parent: 2 - proto: SignCargoDock entities: - - uid: 11212 + - uid: 6853 components: - type: Transform - pos: 6.565961,21.533756 + rot: -1.5707963267948966 rad + pos: 5.5,25.5 parent: 2 - proto: SignChapel entities: @@ -68018,14 +75822,6 @@ entities: rot: 3.141592653589793 rad pos: 28.54057,12.41816 parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 12270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,31.5 - parent: 2 - proto: SignDirectionalDorms entities: - uid: 40 @@ -68049,12 +75845,6 @@ entities: parent: 2 - proto: SignDirectionalEvac entities: - - uid: 1936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 2 - uid: 7848 components: - type: Transform @@ -68216,16 +76006,6 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 7 - components: - - type: Transform - pos: 14.5,32.5 - parent: 2 - - uid: 1599 - components: - - type: Transform - pos: 24.5,-40.5 - parent: 2 - uid: 4874 components: - type: Transform @@ -68246,6 +76026,53 @@ entities: - type: Transform pos: 31.5,-49.5 parent: 2 + - uid: 14698 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 14852 + components: + - type: Transform + pos: 52.5,44.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 14854 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: 62.5,31.5 + parent: 2 + - uid: 14949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,42.5 + parent: 2 + - uid: 14950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,49.5 + parent: 2 - proto: SignEngine entities: - uid: 5157 @@ -68352,10 +76179,10 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 11209 + - uid: 8439 components: - type: Transform - pos: 31.49329,27.493366 + pos: 38.5,32.5 parent: 2 - proto: SignJanitor entities: @@ -68401,11 +76228,16 @@ entities: parent: 2 - proto: SignMagneticsMed entities: - - uid: 12283 + - uid: 6846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 + pos: 3.5,39.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,32.5 parent: 2 - proto: SignMedical entities: @@ -68438,6 +76270,13 @@ entities: - type: Transform pos: 65.5,-7.5 parent: 2 +- proto: SignNTMine + entities: + - uid: 10969 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 - proto: SignPlaque entities: - uid: 12281 @@ -68448,10 +76287,10 @@ entities: parent: 2 - proto: SignPrison entities: - - uid: 11208 + - uid: 13138 components: - type: Transform - pos: 35.478874,29.508991 + pos: 47.5,33.5 parent: 2 - proto: SignRadiationMed entities: @@ -68492,6 +76331,14 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,12.5 parent: 2 +- proto: SignSalvage + entities: + - uid: 6779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,29.5 + parent: 2 - proto: SignScience entities: - uid: 11191 @@ -68506,18 +76353,6 @@ entities: - type: Transform pos: 17.5,-15.5 parent: 2 - - uid: 13644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,28.5 - parent: 2 - - uid: 13645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,28.5 - parent: 2 - proto: SignSecureMed entities: - uid: 1518 @@ -68525,6 +76360,96 @@ entities: - type: Transform pos: 28.5,-25.5 parent: 2 + - uid: 7963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-59.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-51.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-51.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,24.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + pos: 80.5,26.5 + parent: 2 + - uid: 14573 + components: + - type: Transform + pos: 87.5,32.5 + parent: 2 + - uid: 14574 + components: + - type: Transform + pos: 82.5,32.5 + parent: 2 + - uid: 14592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,24.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,49.5 + parent: 2 + - uid: 14952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,42.5 + parent: 2 + - uid: 14966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,30.5 + parent: 2 + - uid: 14972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,36.5 + parent: 2 + - uid: 14976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,34.5 + parent: 2 - proto: SignSecurity entities: - uid: 12294 @@ -68533,31 +76458,8 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,27.5 parent: 2 -- proto: SignShipDock - entities: - - uid: 7784 - components: - - type: Transform - pos: 6.5,18.5 - parent: 2 - - uid: 9306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,51.5 - parent: 2 - proto: SignShock entities: - - uid: 8410 - components: - - type: Transform - pos: 42.5,30.5 - parent: 2 - - uid: 8411 - components: - - type: Transform - pos: 42.5,34.5 - parent: 2 - uid: 11017 components: - type: Transform @@ -68573,31 +76475,6 @@ entities: - type: Transform pos: 25.5,38.5 parent: 2 - - uid: 11089 - components: - - type: Transform - pos: 28.5,22.5 - parent: 2 - - uid: 13631 - components: - - type: Transform - pos: 50.5,39.5 - parent: 2 - - uid: 13632 - components: - - type: Transform - pos: 53.5,41.5 - parent: 2 - - uid: 13633 - components: - - type: Transform - pos: 59.5,41.5 - parent: 2 - - uid: 13634 - components: - - type: Transform - pos: 62.5,39.5 - parent: 2 - proto: SignSmoking entities: - uid: 5466 @@ -68632,11 +76509,26 @@ entities: - type: Transform pos: 62.5,29.5 parent: 2 + - uid: 12823 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 - uid: 12992 components: - type: Transform pos: 33.5,-48.5 parent: 2 + - uid: 14157 + components: + - type: Transform + pos: 73.5,21.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + pos: 80.5,28.5 + parent: 2 - proto: SignSurgery entities: - uid: 11202 @@ -68694,8 +76586,11 @@ entities: - uid: 750 components: - type: Transform + anchored: False pos: 12.5,-31.5 parent: 2 + - type: Physics + bodyType: Dynamic - proto: Sink entities: - uid: 1530 @@ -68753,6 +76648,12 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,6.5 parent: 2 + - uid: 13628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 - proto: SinkWide entities: - uid: 4559 @@ -68760,18 +76661,18 @@ entities: - type: Transform pos: 37.5,-9.5 parent: 2 - - uid: 6680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-6.5 - parent: 2 - uid: 9720 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-4.5 parent: 2 + - uid: 15010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-7.5 + parent: 2 - proto: Skub entities: - uid: 5403 @@ -68839,6 +76740,20 @@ entities: - type: Transform pos: 27.5,-31.5 parent: 2 + - uid: 2121 + components: + - type: MetaData + name: Singulo SMES + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 3263 + components: + - type: MetaData + name: Gravity/Bridge SMES + - type: Transform + pos: 13.5,35.5 + parent: 2 - uid: 3405 components: - type: Transform @@ -68851,11 +76766,6 @@ entities: - type: Transform pos: 23.5,-14.5 parent: 2 - - uid: 5116 - components: - - type: Transform - pos: 56.5,38.5 - parent: 2 - uid: 9002 components: - type: Transform @@ -68870,6 +76780,20 @@ entities: - type: Transform pos: 3.5,-34.5 parent: 2 + - uid: 14394 + components: + - type: MetaData + name: AI Core SMES + - type: Transform + pos: 79.5,34.5 + parent: 2 + - uid: 14741 + components: + - type: MetaData + name: Security SMES + - type: Transform + pos: 37.5,33.5 + parent: 2 - proto: SmokingPipeFilledTobacco entities: - uid: 11946 @@ -69516,10 +77440,10 @@ entities: enabled: False - proto: SpawnMechRipley entities: - - uid: 13762 + - uid: 14751 components: - type: Transform - pos: 7.5,30.5 + pos: 12.5,31.5 parent: 2 - proto: SpawnMobAlexander entities: @@ -69565,10 +77489,10 @@ entities: parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 8443 + - uid: 2493 components: - type: Transform - pos: 40.5,23.5 + pos: 36.5,19.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: @@ -69609,6 +77533,11 @@ entities: - type: Transform pos: 1.5,-7.5 parent: 2 + - uid: 14926 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 - proto: SpawnMobPossumMorty entities: - uid: 12303 @@ -69618,10 +77547,10 @@ entities: parent: 2 - proto: SpawnMobRaccoonMorticia entities: - - uid: 243 + - uid: 14740 components: - type: Transform - pos: 12.5,31.5 + pos: 5.5,15.5 parent: 2 - proto: SpawnMobShiva entities: @@ -69677,15 +77606,15 @@ entities: - type: Transform pos: 45.5,10.5 parent: 2 - - uid: 13765 + - uid: 14628 components: - type: Transform - pos: 55.5,31.5 + pos: 49.5,9.5 parent: 2 - - uid: 13766 + - uid: 14629 components: - type: Transform - pos: 57.5,31.5 + pos: 51.5,9.5 parent: 2 - proto: SpawnPointBotanist entities: @@ -69800,25 +77729,29 @@ entities: parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 12803 + - uid: 15 components: - type: Transform - pos: -16.5,-12.5 + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 parent: 2 - - uid: 12804 + - uid: 98 components: - type: Transform - pos: -15.5,-12.5 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 parent: 2 - - uid: 12805 + - uid: 3343 components: - type: Transform - pos: -9.5,-12.5 + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 parent: 2 - - uid: 12806 + - uid: 12169 components: - type: Transform - pos: -8.5,-12.5 + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 parent: 2 - proto: SpawnPointLawyer entities: @@ -69930,10 +77863,10 @@ entities: parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 11985 + - uid: 14990 components: - type: Transform - pos: 12.5,30.5 + pos: 7.5,18.5 parent: 2 - proto: SpawnPointResearchAssistant entities: @@ -69956,15 +77889,15 @@ entities: parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 8256 + - uid: 14764 components: - type: Transform - pos: 8.5,17.5 + pos: 7.5,31.5 parent: 2 - - uid: 8257 + - uid: 14765 components: - type: Transform - pos: 8.5,18.5 + pos: 8.5,32.5 parent: 2 - proto: SpawnPointScientist entities: @@ -69997,20 +77930,20 @@ entities: parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 8439 + - uid: 8159 components: - type: Transform - pos: 38.5,18.5 + pos: 31.5,29.5 parent: 2 - - uid: 8440 + - uid: 13584 components: - type: Transform - pos: 39.5,18.5 + pos: 30.5,29.5 parent: 2 - - uid: 8441 + - uid: 13585 components: - type: Transform - pos: 37.5,18.5 + pos: 29.5,29.5 parent: 2 - proto: SpawnPointServiceWorker entities: @@ -70070,10 +78003,10 @@ entities: parent: 2 - proto: SpawnPointWarden entities: - - uid: 8442 + - uid: 8375 components: - type: Transform - pos: 39.5,23.5 + pos: 38.5,18.5 parent: 2 - proto: SprayBottle entities: @@ -70104,18 +78037,17 @@ entities: parent: 2 - proto: StasisBed entities: - - uid: 11819 + - uid: 1711 components: - type: Transform - pos: 63.5,4.5 + pos: 60.5,4.5 parent: 2 - proto: StationAiUploadComputer entities: - - uid: 12102 + - uid: 11004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,29.5 + pos: 85.5,32.5 parent: 2 - proto: StationAnchor entities: @@ -70126,22 +78058,35 @@ entities: parent: 2 - proto: StationEfficiencyCircuitBoard entities: - - uid: 13759 + - uid: 14285 components: - type: Transform - pos: 52.427402,30.778826 + pos: 84.42593,28.382923 parent: 2 - proto: StationMap entities: + - uid: 484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 2 - uid: 1761 components: - type: Transform pos: 19.5,38.5 parent: 2 - - uid: 8115 + - uid: 2022 components: - type: Transform - pos: -7.5,-7.5 + rot: 1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 parent: 2 - uid: 8116 components: @@ -70172,12 +78117,6 @@ entities: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,30.5 - parent: 2 - uid: 943 components: - type: Transform @@ -70190,16 +78129,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-7.5 parent: 2 - - uid: 2465 - components: - - type: Transform - pos: 38.5,19.5 - parent: 2 - - uid: 2466 - components: - - type: Transform - pos: 39.5,19.5 - parent: 2 - uid: 3406 components: - type: Transform @@ -70211,16 +78140,23 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-41.5 parent: 2 - - uid: 5045 + - uid: 4406 components: - type: Transform - pos: 50.5,4.5 + rot: 3.141592653589793 rad + pos: 30.5,28.5 parent: 2 - uid: 5067 components: - type: Transform pos: 51.5,-6.5 parent: 2 + - uid: 5512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,40.5 + parent: 2 - uid: 5879 components: - type: Transform @@ -70244,6 +78180,21 @@ entities: - type: Transform pos: 27.5,7.5 parent: 2 + - uid: 13626 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 - proto: StoolBar entities: - uid: 1615 @@ -70329,36 +78280,12 @@ entities: - type: Transform pos: 58.5,9.5 parent: 2 -- proto: Stunbaton - entities: - - uid: 10137 - components: - - type: Transform - pos: 40.348335,22.308064 - parent: 2 - - uid: 10138 - components: - - type: Transform - pos: 40.348335,22.526814 - parent: 2 - - uid: 10139 - components: - - type: Transform - pos: 40.348335,22.745564 - parent: 2 - proto: SubstationBasic entities: - - uid: 30 - components: - - type: MetaData - name: Cargo Substation - - type: Transform - pos: 12.5,34.5 - parent: 2 - uid: 54 components: - type: MetaData - name: Arrivals Substation + name: Dock Substation - type: Transform pos: 6.5,-8.5 parent: 2 @@ -70371,6 +78298,13 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 + - uid: 2039 + components: + - type: MetaData + name: Singulo Substation + - type: Transform + pos: 15.5,-38.5 + parent: 2 - uid: 2160 components: - type: MetaData @@ -70456,13 +78390,6 @@ entities: - type: Transform pos: 35.5,-14.5 parent: 2 - - uid: 8324 - components: - - type: MetaData - name: Security Substation - - type: Transform - pos: 43.5,27.5 - parent: 2 - uid: 9016 components: - type: Transform @@ -70472,19 +78399,26 @@ entities: loadingNetworkDemand: 60.000237 currentReceiving: 60.000237 currentSupply: 60.000237 -- proto: SubstationWallBasic - entities: - - uid: 1014 - components: - - type: Transform - pos: 57.5,37.5 - parent: 2 - - uid: 5576 + - uid: 9041 components: - type: MetaData - name: Singulo Substation + name: Security Substation - type: Transform - pos: 16.5,-37.5 + pos: 37.5,34.5 + parent: 2 + - uid: 13688 + components: + - type: MetaData + name: Cargo Substation + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 14395 + components: + - type: MetaData + name: AI Core Substation + - type: Transform + pos: 80.5,34.5 parent: 2 - proto: SuitStorageCaptain entities: @@ -70553,10 +78487,15 @@ entities: parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 8337 + - uid: 3460 components: - type: Transform - pos: 37.5,31.5 + pos: 48.5,33.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: 49.5,33.5 parent: 2 - proto: SuitStorageNTSRA entities: @@ -70579,18 +78518,33 @@ entities: - type: Transform pos: 41.5,28.5 parent: 2 - - uid: 7946 + - uid: 11209 components: - type: Transform - pos: 39.5,21.5 + pos: 38.5,24.5 parent: 2 - - uid: 7947 + - uid: 11735 components: - type: Transform - pos: 38.5,21.5 + pos: 41.5,24.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 7780 + components: + - type: Transform + pos: 39.5,19.5 parent: 2 - proto: SurveillanceCameraCommand entities: + - uid: 1290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,22.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Hallway - uid: 12735 components: - type: Transform @@ -70613,17 +78567,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: HoP Office - - uid: 12753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - uid: 12754 components: - type: Transform @@ -70679,39 +78622,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Bridge East - - uid: 12759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - - uid: 12760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - - uid: 12761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,35.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Camera Server Room - uid: 12762 components: - type: Transform @@ -70723,101 +78633,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Bridge Entrance - - uid: 13635 - components: - - type: Transform - pos: 58.5,33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Interior - - uid: 13636 - components: - - type: Transform - pos: 56.5,38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Interior North - - uid: 13637 - components: - - type: Transform - pos: 56.5,41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Exterior North - - uid: 13638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,36.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Exterior East - - uid: 13639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,36.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Exterior West - - uid: 13640 - components: - - type: Transform - pos: 54.5,33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Interior 2 - - uid: 13641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance Left - - uid: 13642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance Right - - uid: 13643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,27.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance - uid: 13742 components: - type: Transform @@ -70829,8 +78644,125 @@ entities: - SurveillanceCameraCommand nameSet: True id: Secure Storage Boards + - uid: 13761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 2 + - type: SurveillanceCamera + id: Camera Routers + - uid: 14168 + components: + - type: Transform + pos: 84.5,36.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Exterior 1 + - uid: 14346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,33.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Exterior 2 + - uid: 14575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,34.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Engineering + - uid: 14576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,31.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Entrance + - uid: 14577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,31.5 + parent: 2 + - type: SurveillanceCamera + id: AI Upload + - uid: 14578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,32.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Front + - uid: 14579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Rear + - uid: 14580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,24.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Exterior 3 + - uid: 14596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,23.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Chute + - uid: 14624 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core Access + - uid: 14675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,40.5 + parent: 2 + - type: SurveillanceCamera + id: Captain's Office + - uid: 14676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,42.5 + parent: 2 + - type: SurveillanceCamera + id: Captain's Bedroom + - uid: 14677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,37.5 + parent: 2 + - type: SurveillanceCamera + id: Gravity Generator - proto: SurveillanceCameraEngineering entities: + - uid: 2035 + components: + - type: Transform + pos: 21.5,-58.5 + parent: 2 + - type: SurveillanceCamera + id: Singulo South - uid: 5877 components: - type: Transform @@ -70842,6 +78774,14 @@ entities: - SurveillanceCameraEngineering nameSet: True id: 'Solars Northwest ' + - uid: 7462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-47.5 + parent: 2 + - type: SurveillanceCamera + id: Singulo East - uid: 7918 components: - type: Transform @@ -70853,6 +78793,30 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchor Room + - uid: 10986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-50.5 + parent: 2 + - type: SurveillanceCamera + id: Singulo West + - uid: 10989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-16.5 + parent: 2 + - type: SurveillanceCamera + id: Telecomms + - uid: 10995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - type: SurveillanceCamera + id: Telecomms Entrance - uid: 12663 components: - type: Transform @@ -70864,17 +78828,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Solars Southwest Door - - uid: 12775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-16.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - uid: 12778 components: - type: Transform @@ -70918,17 +78871,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Particle Accelerator - - uid: 12784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-44.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Airlock - uid: 12785 components: - type: Transform @@ -71005,17 +78947,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: CE bedroom - - uid: 13614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Cage Airlock - uid: 13615 components: - type: Transform @@ -71131,40 +79062,16 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Solars Northwest Door -- proto: SurveillanceCameraGeneral - entities: - - uid: 7971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Competitive Shitting - - uid: 12662 + - uid: 14678 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-17.5 + pos: 16.5,-40.5 parent: 2 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: External Dock Airlock - - uid: 12664 - components: - - type: Transform - pos: 10.5,38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Grav Gen External Airlock Door + id: Singulo Power +- proto: SurveillanceCameraGeneral + entities: - uid: 12665 components: - type: Transform @@ -71176,17 +79083,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Vault - - uid: 12666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bathroom - uid: 12667 components: - type: Transform @@ -71284,17 +79180,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Evac - - uid: 12731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals - uid: 12737 components: - type: Transform @@ -71415,8 +79300,54 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Bar South + - uid: 13760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals Port + - uid: 13765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals Port Bow + - uid: 13766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 2 + - type: SurveillanceCamera + id: Evac + - uid: 14082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals Starboard - proto: SurveillanceCameraMedical entities: + - uid: 1712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: Treatment - uid: 12215 components: - type: Transform @@ -71548,17 +79479,6 @@ entities: - SurveillanceCameraMedical nameSet: True id: Cryo - - uid: 12237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery Prep - uid: 12238 components: - type: Transform @@ -71583,17 +79503,17 @@ entities: id: Virology Quarantine 1 - proto: SurveillanceCameraRouterCommand entities: - - uid: 10318 + - uid: 2300 components: - type: Transform - pos: 32.5,34.5 + pos: 32.5,35.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 10320 + - uid: 8404 components: - type: Transform - pos: 30.5,34.5 + pos: 30.5,35.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: @@ -71618,10 +79538,10 @@ entities: parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 10319 + - uid: 3160 components: - type: Transform - pos: 31.5,34.5 + pos: 31.5,35.5 parent: 2 - proto: SurveillanceCameraRouterService entities: @@ -71672,17 +79592,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Science Server Room - - uid: 12766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Locker Room - uid: 12768 components: - type: Transform @@ -71751,6 +79660,21 @@ entities: id: Science Entrance - proto: SurveillanceCameraSecurity entities: + - uid: 3204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Interrogation + - uid: 7722 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - type: SurveillanceCamera + id: Security Locker Room - uid: 12732 components: - type: Transform @@ -71773,39 +79697,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Evac Checkpoint - - uid: 12741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,30.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation - - uid: 12742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Left - - uid: 12743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Right - uid: 12744 components: - type: Transform @@ -71905,6 +79796,29 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Court House + - uid: 13757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - type: SurveillanceCamera + id: Perma Brig + - uid: 13758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Perma Entrance + - uid: 13759 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Security Hallway - proto: SurveillanceCameraService entities: - uid: 12711 @@ -71986,6 +79900,21 @@ entities: id: Janitor's Office - proto: SurveillanceCameraSupply entities: + - uid: 9297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Salvage + - uid: 10979 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - type: SurveillanceCamera + id: Salvage Platform - uid: 12724 components: - type: Transform @@ -71997,60 +79926,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo Desk - - uid: 12725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - - uid: 12726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: QM Office - - uid: 12727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Storage - - uid: 12728 - components: - - type: Transform - pos: 5.5,26.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Dock - - uid: 12729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - uid: 12777 components: - type: Transform @@ -72062,6 +79937,43 @@ entities: - SurveillanceCameraSupply nameSet: True id: Technical Storage + - uid: 12840 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - type: SurveillanceCamera + id: Cargo Bay + - uid: 14673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2 + - type: SurveillanceCamera + id: Quartermaster's Bedroom + - uid: 14674 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - type: SurveillanceCamera + id: Quartermaster's Office + - uid: 14768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Cargo Storage + - uid: 14954 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - type: SurveillanceCamera + id: Cargo Dock - proto: SynthesizerInstrument entities: - uid: 9740 @@ -72069,6 +79981,11 @@ entities: - type: Transform pos: 19.550474,-10.884444 parent: 2 + - uid: 14075 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 - proto: Syringe entities: - uid: 10709 @@ -72162,11 +80079,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-23.5 parent: 2 - - uid: 1146 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 2 - uid: 1331 components: - type: Transform @@ -72259,48 +80171,17 @@ entities: rot: 3.141592653589793 rad pos: 19.5,5.5 parent: 2 - - uid: 2121 + - uid: 2151 components: - type: Transform - pos: 11.5,21.5 - parent: 2 - - uid: 2122 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - - uid: 2127 - components: - - type: Transform - pos: 20.5,24.5 - parent: 2 - - uid: 2147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,31.5 + rot: 3.141592653589793 rad + pos: 11.5,20.5 parent: 2 - uid: 2156 components: - type: Transform pos: 15.5,35.5 parent: 2 - - uid: 2306 - components: - - type: Transform - pos: 37.5,36.5 - parent: 2 - - uid: 2319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,34.5 - parent: 2 - - uid: 2462 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 - uid: 2486 components: - type: Transform @@ -72326,6 +80207,17 @@ entities: - type: Transform pos: 79.5,-7.5 parent: 2 + - uid: 3240 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,18.5 + parent: 2 - uid: 3474 components: - type: Transform @@ -72351,6 +80243,12 @@ entities: - type: Transform pos: 72.5,5.5 parent: 2 + - uid: 4001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 2 - uid: 4017 components: - type: Transform @@ -72392,6 +80290,12 @@ entities: - type: Transform pos: 23.5,15.5 parent: 2 + - uid: 4767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 2 - uid: 5003 components: - type: Transform @@ -72443,6 +80347,11 @@ entities: - type: Transform pos: 81.5,-4.5 parent: 2 + - uid: 5283 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 - uid: 5306 components: - type: Transform @@ -72525,21 +80434,11 @@ entities: - type: Transform pos: 86.5,1.5 parent: 2 - - uid: 5528 - components: - - type: Transform - pos: 64.5,20.5 - parent: 2 - uid: 5710 components: - type: Transform pos: 77.5,-13.5 parent: 2 - - uid: 6572 - components: - - type: Transform - pos: 44.5,-2.5 - parent: 2 - uid: 6756 components: - type: Transform @@ -72586,6 +80485,22 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 + - uid: 8383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 - uid: 8858 components: - type: Transform @@ -72611,6 +80526,17 @@ entities: - type: Transform pos: 46.5,2.5 parent: 2 + - uid: 9707 + components: + - type: Transform + pos: 78.5,4.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,40.5 + parent: 2 - uid: 10072 components: - type: Transform @@ -72621,6 +80547,11 @@ entities: - type: Transform pos: 78.5,-6.5 parent: 2 + - uid: 10137 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 - uid: 10268 components: - type: Transform @@ -72656,6 +80587,12 @@ entities: - type: Transform pos: 63.5,8.5 parent: 2 + - uid: 10763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,40.5 + parent: 2 - uid: 10803 components: - type: Transform @@ -72728,6 +80665,17 @@ entities: rot: 1.5707963267948966 rad pos: 76.5,5.5 parent: 2 + - uid: 11432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,4.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 - uid: 11830 components: - type: Transform @@ -72779,43 +80727,76 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-19.5 parent: 2 + - uid: 13105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 2 - uid: 13120 components: - type: Transform pos: 48.5,11.5 parent: 2 - - uid: 13650 + - uid: 13564 components: - type: Transform - pos: 52.5,30.5 + pos: 50.5,4.5 parent: 2 - - uid: 13651 + - uid: 13609 components: - type: Transform - pos: 52.5,31.5 + pos: 54.5,41.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,31.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,31.5 + parent: 2 + - uid: 14068 + components: + - type: Transform + pos: -17.5,0.5 parent: 2 - proto: TableCarpet entities: + - uid: 2266 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 - uid: 5501 components: - type: Transform pos: 70.5,33.5 parent: 2 - - uid: 5508 + - uid: 6007 components: - type: Transform pos: 70.5,27.5 parent: 2 - - uid: 5509 - components: - - type: Transform - pos: 70.5,28.5 - parent: 2 - - uid: 5510 - components: - - type: Transform - pos: 70.5,29.5 - parent: 2 - uid: 13473 components: - type: Transform @@ -72940,11 +80921,6 @@ entities: - type: Transform pos: -1.5,-12.5 parent: 2 - - uid: 349 - components: - - type: Transform - pos: 41.5,22.5 - parent: 2 - uid: 513 components: - type: Transform @@ -73023,11 +80999,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,26.5 parent: 2 - - uid: 2492 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - uid: 2991 components: - type: Transform @@ -73155,26 +81126,37 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 2 + - uid: 7679 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 - uid: 7739 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 7937 + - uid: 8433 components: - type: Transform - pos: 40.5,22.5 + pos: 39.5,21.5 parent: 2 - - uid: 7939 + - uid: 8675 components: - type: Transform - pos: 41.5,24.5 + pos: 40.5,35.5 parent: 2 - uid: 10310 components: - type: Transform pos: 8.5,-6.5 parent: 2 + - uid: 11475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,17.5 + parent: 2 - uid: 11800 components: - type: Transform @@ -73191,6 +81173,73 @@ entities: - type: Transform pos: 49.5,1.5 parent: 2 + - uid: 14245 + components: + - type: Transform + pos: 85.5,28.5 + parent: 2 + - uid: 14265 + components: + - type: Transform + pos: 84.5,28.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: 86.5,28.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,28.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,28.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,32.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,32.5 + parent: 2 + - uid: 14661 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 14662 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 +- proto: TableReinforcedGlass + entities: + - uid: 14145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,22.5 + parent: 2 + - uid: 14152 + components: + - type: Transform + pos: 71.5,23.5 + parent: 2 + - uid: 14153 + components: + - type: Transform + pos: 71.5,22.5 + parent: 2 - proto: TableWood entities: - uid: 302 @@ -73316,6 +81365,11 @@ entities: - type: Transform pos: 37.5,43.5 parent: 2 + - uid: 7262 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 - uid: 7547 components: - type: Transform @@ -73361,6 +81415,12 @@ entities: - type: Transform pos: 43.5,20.5 parent: 2 + - uid: 12727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,18.5 + parent: 2 - proto: TargetClown entities: - uid: 9607 @@ -73557,25 +81617,41 @@ entities: ents: [] - proto: TeslaCoil entities: - - uid: 5664 + - uid: 2038 components: - type: Transform - pos: 14.5,-50.5 + rot: -1.5707963267948966 rad + pos: 25.5,-40.5 parent: 2 - - uid: 13188 + - uid: 2081 components: - type: Transform - pos: 14.5,-52.5 + rot: 3.141592653589793 rad + pos: 25.5,-41.5 parent: 2 - - uid: 13189 + - uid: 7969 components: - type: Transform - pos: 28.5,-52.5 + rot: 3.141592653589793 rad + pos: 26.5,-42.5 parent: 2 - - uid: 13190 + - uid: 7971 components: - type: Transform - pos: 28.5,-50.5 + rot: 3.141592653589793 rad + pos: 25.5,-42.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-40.5 + parent: 2 + - uid: 11070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-41.5 parent: 2 - proto: TeslaGenerator entities: @@ -73586,28 +81662,37 @@ entities: parent: 2 - proto: TeslaGroundingRod entities: - - uid: 12384 + - uid: 14755 components: - type: Transform - pos: 12.5,-46.5 + rot: 3.141592653589793 rad + pos: 26.5,-44.5 parent: 2 - - uid: 13183 + - uid: 14756 components: - type: Transform - pos: 12.5,-47.5 + rot: 3.141592653589793 rad + pos: 25.5,-44.5 parent: 2 - - uid: 13184 + - uid: 14757 components: - type: Transform - pos: 12.5,-48.5 + rot: 3.141592653589793 rad + pos: 17.5,-44.5 parent: 2 - - uid: 13185 + - uid: 14758 components: - type: Transform - pos: 12.5,-49.5 + rot: 3.141592653589793 rad + pos: 16.5,-44.5 parent: 2 - proto: TintedWindow entities: + - uid: 171 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 - uid: 1165 components: - type: Transform @@ -73628,11 +81713,28 @@ entities: - type: Transform pos: 62.5,-8.5 parent: 2 + - uid: 10993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-16.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 2 - uid: 11195 components: - type: Transform pos: 60.5,-8.5 parent: 2 + - uid: 14525 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 - proto: ToiletEmpty entities: - uid: 460 @@ -73646,10 +81748,11 @@ entities: rot: 3.141592653589793 rad pos: 8.5,12.5 parent: 2 - - uid: 2291 + - uid: 3253 components: - type: Transform - pos: 41.5,37.5 + rot: 3.141592653589793 rad + pos: 59.5,34.5 parent: 2 - uid: 5701 components: @@ -73662,6 +81765,11 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-13.5 parent: 2 + - uid: 8702 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 - uid: 9019 components: - type: Transform @@ -73720,6 +81828,11 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: + - uid: 2949 + components: + - type: Transform + pos: 6.500301,40.636074 + parent: 2 - uid: 4998 components: - type: Transform @@ -73740,18 +81853,25 @@ entities: - type: Transform pos: 36.482082,-14.5012665 parent: 2 -- proto: ToyRubberDuck +- proto: ToyAi entities: - - uid: 2321 + - uid: 14649 components: - type: Transform - pos: 37.63663,34.272766 + pos: 69.5,25.5 parent: 2 +- proto: ToyRubberDuck + entities: - uid: 6933 components: - type: Transform pos: 12.5,12.5 parent: 2 + - uid: 13632 + components: + - type: Transform + pos: 56.426826,31.732376 + parent: 2 - proto: ToySpawner entities: - uid: 8652 @@ -73787,141 +81907,38 @@ entities: parent: 2 - proto: TwoWayLever entities: - - uid: 944 + - uid: 607 components: - type: Transform - pos: 8.5,16.5 + pos: 9.5,33.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12229: + 829: - Left: Forward - Right: Reverse - Middle: Off - 7667: + 967: - Left: Forward - Right: Reverse - Middle: Off - 6844: + 944: - Left: Forward - Right: Reverse - Middle: Off - 7891: + 450: - Left: Forward - Right: Reverse - Middle: Off - 7841: + 999: - Left: Forward - Right: Reverse - Middle: Off - 7875: + 14660: - Left: Forward - Right: Reverse - Middle: Off - 7949: - - Left: Forward - - Right: Reverse - - Middle: Off - 7586: - - Left: Forward - - Right: Reverse - - Middle: Off - 6825: - - Left: Forward - - Right: Reverse - - Middle: Off - 7672: - - Left: Forward - - Right: Reverse - - Middle: Off - 7585: - - Left: Forward - - Right: Reverse - - Middle: Off - 2028: - - Left: Forward - - Right: Reverse - - Middle: Off - 6823: - - Left: Forward - - Right: Reverse - - Middle: Off - 7888: - - Left: Forward - - Right: Reverse - - Middle: Off - 6820: - - Left: Forward - - Right: Reverse - - Middle: Off - 7849: - - Left: Forward - - Right: Reverse - - Middle: Off - 2030: - - Left: Forward - - Right: Reverse - - Middle: Off - 7671: - - Left: Forward - - Right: Reverse - - Middle: Off - 6846: - - Left: Forward - - Right: Reverse - - Middle: Off - 7880: - - Left: Forward - - Right: Reverse - - Middle: Off - 7878: - - Left: Forward - - Right: Reverse - - Middle: Off - 7879: - - Left: Forward - - Right: Reverse - - Middle: Off - 7876: - - Left: Forward - - Right: Reverse - - Middle: Off - 5285: - - Left: Forward - - Right: Reverse - - Middle: Off - 1319: - - Left: Forward - - Right: Reverse - - Middle: Off - 6775: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 2154 - components: - - type: Transform - pos: 8.479812,22.588839 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2039: - - Left: Forward - - Right: Reverse - - Middle: Off - 2040: - - Left: Forward - - Right: Reverse - - Middle: Off - 2067: - - Left: Forward - - Right: Reverse - - Middle: Off - 2051: - - Left: Forward - - Right: Reverse - - Middle: Off - 2066: + 12384: - Left: Forward - Right: Reverse - Middle: Off @@ -73991,17 +82008,13 @@ entities: - Left: Open - Right: Open - Middle: Close - - uid: 7808 + - uid: 8101 components: - type: Transform - pos: 8.5,28.5 + pos: 6.5,28.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2038: - - Left: Forward - - Right: Reverse - - Middle: Off 2037: - Left: Forward - Right: Reverse @@ -74018,6 +82031,37 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + 13731: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 8446 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2040: + - Left: Forward + - Right: Reverse + - Middle: Off + 2067: + - Left: Forward + - Right: Reverse + - Middle: Off + 2051: + - Left: Forward + - Right: Reverse + - Middle: Off + 2066: + - Left: Forward + - Right: Reverse + - Middle: Off + 8239: + - Left: Forward + - Right: Reverse + - Middle: Off - uid: 8665 components: - type: Transform @@ -74101,10 +82145,10 @@ entities: parent: 2 - proto: VendingMachineCargoDrobe entities: - - uid: 8176 + - uid: 9040 components: - type: Transform - pos: 9.5,32.5 + pos: 6.5,21.5 parent: 2 - proto: VendingMachineCart entities: @@ -74176,6 +82220,11 @@ entities: - type: Transform pos: 32.5,-2.5 parent: 2 + - uid: 7507 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 - uid: 11033 components: - type: Transform @@ -74190,6 +82239,11 @@ entities: parent: 2 - proto: VendingMachineCoffee entities: + - uid: 90 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 - uid: 586 components: - type: MetaData @@ -74232,11 +82286,6 @@ entities: - type: Transform pos: 45.5,20.5 parent: 2 - - uid: 11432 - components: - - type: Transform - pos: 78.5,3.5 - parent: 2 - proto: VendingMachineCondiments entities: - uid: 6757 @@ -74286,6 +82335,11 @@ entities: - type: Transform pos: 8.5,5.5 parent: 2 + - uid: 13622 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 - proto: VendingMachineGeneDrobe entities: - uid: 11912 @@ -74351,12 +82405,10 @@ entities: parent: 2 - proto: VendingMachineSalvage entities: - - uid: 11811 + - uid: 12158 components: - - type: MetaData - name: Salvage Equipment - type: Transform - pos: 7.5,19.5 + pos: 9.5,32.5 parent: 2 - proto: VendingMachineSciDrobe entities: @@ -74367,17 +82419,17 @@ entities: parent: 2 - proto: VendingMachineSec entities: - - uid: 2467 + - uid: 8442 components: - type: Transform - pos: 36.5,17.5 + pos: 31.5,28.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 2464 + - uid: 6184 components: - type: Transform - pos: 37.5,19.5 + pos: 29.5,28.5 parent: 2 - proto: VendingMachineSeeds entities: @@ -74388,10 +82440,10 @@ entities: parent: 2 - proto: VendingMachineSeedsUnlocked entities: - - uid: 6866 + - uid: 13605 components: - type: Transform - pos: 39.5,36.5 + pos: 55.5,36.5 parent: 2 - proto: VendingMachineSovietSoda entities: @@ -74402,25 +82454,35 @@ entities: parent: 2 - proto: VendingMachineSustenance entities: - - uid: 12080 + - uid: 13623 components: - type: Transform - pos: 41.5,34.5 + pos: 57.5,31.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 13706 + - uid: 8172 components: - type: Transform - pos: 17.5,-38.5 + pos: 17.5,-42.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: + - uid: 3476 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 - uid: 10305 components: - type: Transform pos: 8.5,-7.5 parent: 2 + - uid: 14747 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 - proto: VendingMachineTheater entities: - uid: 1144 @@ -74481,6 +82543,14 @@ entities: - type: Transform pos: 31.5,43.5 parent: 2 +- proto: WallmountTelescreenFrame + entities: + - uid: 14562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,30.5 + parent: 2 - proto: WallReinforced entities: - uid: 4 @@ -74488,30 +82558,50 @@ entities: - type: Transform pos: 5.5,14.5 parent: 2 - - uid: 22 + - uid: 20 components: - type: Transform - pos: -7.5,-3.5 + rot: -1.5707963267948966 rad + pos: -9.5,-17.5 parent: 2 - - uid: 49 + - uid: 23 components: - type: Transform - pos: -10.5,1.5 + pos: -9.5,-21.5 parent: 2 - uid: 67 components: - type: Transform pos: 14.5,-13.5 parent: 2 - - uid: 72 + - uid: 83 components: - type: Transform - pos: 10.5,37.5 + pos: -17.5,-23.5 parent: 2 - - uid: 75 + - uid: 89 components: - type: Transform - pos: 10.5,36.5 + rot: 3.141592653589793 rad + pos: -25.5,1.5 + parent: 2 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 2 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 2 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 parent: 2 - uid: 156 components: @@ -74558,6 +82648,12 @@ entities: - type: Transform pos: 7.5,-10.5 parent: 2 + - uid: 201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-17.5 + parent: 2 - uid: 206 components: - type: Transform @@ -74633,66 +82729,66 @@ entities: - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 246 + - uid: 319 components: - type: Transform - pos: -7.5,1.5 - parent: 2 - - uid: 250 - components: - - type: Transform - pos: -6.5,14.5 - parent: 2 - - uid: 254 - components: - - type: Transform - pos: -8.5,1.5 + rot: 3.141592653589793 rad + pos: 60.5,32.5 parent: 2 - uid: 324 components: - type: Transform pos: 6.5,14.5 parent: 2 + - uid: 331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 2 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 - uid: 343 components: - type: Transform - pos: 0.5,14.5 + pos: 10.5,19.5 parent: 2 - - uid: 344 + - uid: 346 components: - type: Transform - pos: -12.5,1.5 - parent: 2 - - uid: 398 - components: - - type: Transform - pos: 4.5,20.5 - parent: 2 - - uid: 430 - components: - - type: Transform - pos: 6.5,21.5 - parent: 2 - - uid: 431 - components: - - type: Transform - pos: 6.5,20.5 + rot: -1.5707963267948966 rad + pos: -25.5,-3.5 parent: 2 - uid: 435 components: - type: Transform pos: 65.5,24.5 parent: 2 + - uid: 437 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 - uid: 462 components: - type: Transform - pos: -14.5,-11.5 + rot: -1.5707963267948966 rad + pos: -27.5,1.5 parent: 2 - uid: 470 components: - type: Transform pos: 5.5,-16.5 parent: 2 + - uid: 471 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 - uid: 481 components: - type: Transform @@ -74789,10 +82885,11 @@ entities: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 509 + - uid: 510 components: - type: Transform - pos: -7.5,-11.5 + rot: -1.5707963267948966 rad + pos: -26.5,1.5 parent: 2 - uid: 534 components: @@ -74824,11 +82921,6 @@ entities: - type: Transform pos: 17.5,-13.5 parent: 2 - - uid: 553 - components: - - type: Transform - pos: -12.5,14.5 - parent: 2 - uid: 573 components: - type: Transform @@ -74844,10 +82936,10 @@ entities: - type: Transform pos: 18.5,-22.5 parent: 2 - - uid: 612 + - uid: 610 components: - type: Transform - pos: -15.5,-15.5 + pos: 6.5,34.5 parent: 2 - uid: 615 components: @@ -75059,30 +83151,27 @@ entities: - type: Transform pos: 24.5,-14.5 parent: 2 - - uid: 680 + - uid: 669 components: - type: Transform - pos: -17.5,-15.5 + rot: 3.141592653589793 rad + pos: 53.5,42.5 + parent: 2 + - uid: 687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,36.5 parent: 2 - uid: 690 components: - type: Transform - pos: -17.5,-11.5 + pos: 3.5,-17.5 parent: 2 - - uid: 691 + - uid: 694 components: - type: Transform - pos: -21.5,-11.5 - parent: 2 - - uid: 693 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 2 - - uid: 705 - components: - - type: Transform - pos: -7.5,14.5 + pos: -7.5,-21.5 parent: 2 - uid: 707 components: @@ -75365,15 +83454,11 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-29.5 parent: 2 - - uid: 895 - components: - - type: Transform - pos: -9.5,14.5 - parent: 2 - uid: 900 components: - type: Transform - pos: -10.5,14.5 + rot: 3.141592653589793 rad + pos: 6.5,35.5 parent: 2 - uid: 915 components: @@ -75415,16 +83500,6 @@ entities: - type: Transform pos: 18.5,-37.5 parent: 2 - - uid: 953 - components: - - type: Transform - pos: 15.5,-38.5 - parent: 2 - - uid: 954 - components: - - type: Transform - pos: 15.5,-39.5 - parent: 2 - uid: 955 components: - type: Transform @@ -75445,6 +83520,11 @@ entities: - type: Transform pos: 18.5,-40.5 parent: 2 + - uid: 993 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 - uid: 1007 components: - type: Transform @@ -75457,11 +83537,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-34.5 parent: 2 - - uid: 1013 - components: - - type: Transform - pos: -27.5,7.5 - parent: 2 - uid: 1021 components: - type: Transform @@ -75472,15 +83547,20 @@ entities: - type: Transform pos: 15.5,-43.5 parent: 2 - - uid: 1023 + - uid: 1042 components: - type: Transform - pos: 15.5,-42.5 + pos: 8.5,35.5 parent: 2 - - uid: 1109 + - uid: 1055 components: - type: Transform - pos: -11.5,14.5 + pos: 4.5,36.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: 14.5,-39.5 parent: 2 - uid: 1218 components: @@ -75492,10 +83572,10 @@ entities: - type: Transform pos: 16.5,-15.5 parent: 2 - - uid: 1232 + - uid: 1230 components: - type: Transform - pos: -27.5,11.5 + pos: 48.5,32.5 parent: 2 - uid: 1250 components: @@ -75552,11 +83632,6 @@ entities: - type: Transform pos: 30.5,-55.5 parent: 2 - - uid: 1274 - components: - - type: Transform - pos: 11.5,-57.5 - parent: 2 - uid: 1276 components: - type: Transform @@ -75582,11 +83657,6 @@ entities: - type: Transform pos: 12.5,-45.5 parent: 2 - - uid: 1281 - components: - - type: Transform - pos: 11.5,-45.5 - parent: 2 - uid: 1282 components: - type: Transform @@ -75607,36 +83677,6 @@ entities: - type: Transform pos: 11.5,-49.5 parent: 2 - - uid: 1286 - components: - - type: Transform - pos: 10.5,-47.5 - parent: 2 - - uid: 1287 - components: - - type: Transform - pos: 10.5,-48.5 - parent: 2 - - uid: 1288 - components: - - type: Transform - pos: 10.5,-49.5 - parent: 2 - - uid: 1289 - components: - - type: Transform - pos: 10.5,-50.5 - parent: 2 - - uid: 1290 - components: - - type: Transform - pos: 10.5,-51.5 - parent: 2 - - uid: 1291 - components: - - type: Transform - pos: 10.5,-52.5 - parent: 2 - uid: 1292 components: - type: Transform @@ -75655,42 +83695,35 @@ entities: - uid: 1295 components: - type: Transform - pos: 11.5,-54.5 + rot: -1.5707963267948966 rad + pos: 12.5,-46.5 parent: 2 - uid: 1296 components: - type: Transform - pos: 11.5,-53.5 + rot: -1.5707963267948966 rad + pos: 12.5,-48.5 parent: 2 - uid: 1297 components: - type: Transform pos: 11.5,-55.5 parent: 2 - - uid: 1298 - components: - - type: Transform - pos: 10.5,-55.5 - parent: 2 - uid: 1299 components: - type: Transform pos: 30.5,-59.5 parent: 2 - - uid: 1318 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 2 - uid: 1326 components: - type: Transform pos: 5.5,-33.5 parent: 2 - - uid: 1333 + - uid: 1334 components: - type: Transform - pos: -7.5,-15.5 + rot: -1.5707963267948966 rad + pos: -27.5,-2.5 parent: 2 - uid: 1337 components: @@ -75747,11 +83780,6 @@ entities: - type: Transform pos: 16.5,39.5 parent: 2 - - uid: 1545 - components: - - type: Transform - pos: -8.5,14.5 - parent: 2 - uid: 1576 components: - type: Transform @@ -75767,6 +83795,12 @@ entities: - type: Transform pos: 40.5,-13.5 parent: 2 + - uid: 1599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-52.5 + parent: 2 - uid: 1638 components: - type: Transform @@ -75803,11 +83837,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-15.5 parent: 2 - - uid: 1699 - components: - - type: Transform - pos: 46.5,-13.5 - parent: 2 - uid: 1700 components: - type: Transform @@ -75833,11 +83862,6 @@ entities: - type: Transform pos: 41.5,-13.5 parent: 2 - - uid: 1705 - components: - - type: Transform - pos: 46.5,-17.5 - parent: 2 - uid: 1706 components: - type: Transform @@ -75868,11 +83892,21 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 - uid: 1828 components: - type: Transform pos: 29.5,-25.5 parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 - uid: 1980 components: - type: Transform @@ -75913,70 +83947,17 @@ entities: - type: Transform pos: 53.5,-12.5 parent: 2 - - uid: 2011 - components: - - type: Transform - pos: 5.5,29.5 - parent: 2 - - uid: 2012 - components: - - type: Transform - pos: 5.5,30.5 - parent: 2 - - uid: 2013 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - - uid: 2014 - components: - - type: Transform - pos: 5.5,32.5 - parent: 2 - - uid: 2015 - components: - - type: Transform - pos: 5.5,33.5 - parent: 2 - - uid: 2016 - components: - - type: Transform - pos: 6.5,33.5 - parent: 2 - - uid: 2017 - components: - - type: Transform - pos: 7.5,33.5 - parent: 2 - - uid: 2018 - components: - - type: Transform - pos: 8.5,33.5 - parent: 2 - - uid: 2019 - components: - - type: Transform - pos: 9.5,33.5 - parent: 2 - - uid: 2020 - components: - - type: Transform - pos: 10.5,33.5 - parent: 2 - - uid: 2024 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 2 - uid: 2033 components: - type: Transform - pos: -14.5,-15.5 + rot: 1.5707963267948966 rad + pos: -0.5,-20.5 parent: 2 - - uid: 2043 + - uid: 2058 components: - type: Transform - pos: -16.5,-15.5 + rot: -1.5707963267948966 rad + pos: 15.5,-42.5 parent: 2 - uid: 2070 components: @@ -75990,10 +83971,10 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-30.5 parent: 2 - - uid: 2085 + - uid: 2077 components: - type: Transform - pos: -17.5,14.5 + pos: 4.5,30.5 parent: 2 - uid: 2088 components: @@ -76006,6 +83987,11 @@ entities: - type: Transform pos: 24.5,28.5 parent: 2 + - uid: 2122 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 - uid: 2138 components: - type: Transform @@ -76103,7 +84089,7 @@ entities: - uid: 2204 components: - type: Transform - pos: 28.5,29.5 + pos: 36.5,29.5 parent: 2 - uid: 2205 components: @@ -76130,100 +84116,60 @@ entities: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 2210 - components: - - type: Transform - pos: 32.5,31.5 - parent: 2 - uid: 2211 components: - type: Transform - pos: 34.5,31.5 + rot: 3.141592653589793 rad + pos: 51.5,29.5 parent: 2 - uid: 2212 components: - type: Transform - pos: 35.5,31.5 - parent: 2 - - uid: 2213 - components: - - type: Transform - pos: 35.5,32.5 + pos: 60.5,35.5 parent: 2 - uid: 2214 components: - type: Transform - pos: 36.5,32.5 + pos: 60.5,37.5 parent: 2 - uid: 2215 components: - type: Transform - pos: 37.5,32.5 - parent: 2 - - uid: 2216 - components: - - type: Transform - pos: 38.5,32.5 + pos: 60.5,38.5 parent: 2 - uid: 2217 components: - type: Transform - pos: 38.5,31.5 + pos: 60.5,34.5 parent: 2 - uid: 2218 components: - type: Transform - pos: 35.5,33.5 + rot: 3.141592653589793 rad + pos: 49.5,29.5 parent: 2 - uid: 2219 components: - type: Transform - pos: 35.5,34.5 + pos: 43.5,32.5 parent: 2 - uid: 2220 components: - type: Transform - pos: 35.5,35.5 - parent: 2 - - uid: 2221 - components: - - type: Transform - pos: 35.5,36.5 - parent: 2 - - uid: 2222 - components: - - type: Transform - pos: 36.5,36.5 - parent: 2 - - uid: 2223 - components: - - type: Transform - pos: 36.5,37.5 - parent: 2 - - uid: 2224 - components: - - type: Transform - pos: 37.5,37.5 - parent: 2 - - uid: 2225 - components: - - type: Transform - pos: 38.5,37.5 + rot: 3.141592653589793 rad + pos: 50.5,29.5 parent: 2 - uid: 2226 components: - type: Transform - pos: 39.5,37.5 - parent: 2 - - uid: 2227 - components: - - type: Transform - pos: 40.5,37.5 + rot: 3.141592653589793 rad + pos: 63.5,44.5 parent: 2 - uid: 2228 components: - type: Transform - pos: 40.5,36.5 + rot: 3.141592653589793 rad + pos: 31.5,32.5 parent: 2 - uid: 2229 components: @@ -76233,12 +84179,8 @@ entities: - uid: 2230 components: - type: Transform - pos: 41.5,38.5 - parent: 2 - - uid: 2231 - components: - - type: Transform - pos: 42.5,38.5 + rot: 3.141592653589793 rad + pos: 34.5,32.5 parent: 2 - uid: 2232 components: @@ -76265,36 +84207,11 @@ entities: - type: Transform pos: 35.5,29.5 parent: 2 - - uid: 2261 - components: - - type: Transform - pos: 36.5,29.5 - parent: 2 - uid: 2262 components: - type: Transform pos: 37.5,29.5 parent: 2 - - uid: 2263 - components: - - type: Transform - pos: 38.5,29.5 - parent: 2 - - uid: 2264 - components: - - type: Transform - pos: 39.5,29.5 - parent: 2 - - uid: 2265 - components: - - type: Transform - pos: 41.5,29.5 - parent: 2 - - uid: 2266 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - uid: 2267 components: - type: Transform @@ -76310,16 +84227,6 @@ entities: - type: Transform pos: 44.5,29.5 parent: 2 - - uid: 2270 - components: - - type: Transform - pos: 44.5,30.5 - parent: 2 - - uid: 2271 - components: - - type: Transform - pos: 44.5,31.5 - parent: 2 - uid: 2272 components: - type: Transform @@ -76330,16 +84237,6 @@ entities: - type: Transform pos: 44.5,33.5 parent: 2 - - uid: 2275 - components: - - type: Transform - pos: 42.5,30.5 - parent: 2 - - uid: 2276 - components: - - type: Transform - pos: 43.5,38.5 - parent: 2 - uid: 2277 components: - type: Transform @@ -76350,6 +84247,17 @@ entities: - type: Transform pos: 44.5,37.5 parent: 2 + - uid: 2306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-57.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 - uid: 2327 components: - type: Transform @@ -76440,11 +84348,6 @@ entities: - type: Transform pos: 42.5,21.5 parent: 2 - - uid: 2347 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - uid: 2348 components: - type: Transform @@ -76518,11 +84421,6 @@ entities: - type: Transform pos: 34.5,16.5 parent: 2 - - uid: 2479 - components: - - type: Transform - pos: -0.5,14.5 - parent: 2 - uid: 2485 components: - type: Transform @@ -76533,26 +84431,6 @@ entities: - type: Transform pos: 29.5,33.5 parent: 2 - - uid: 2564 - components: - - type: Transform - pos: 30.5,33.5 - parent: 2 - - uid: 2565 - components: - - type: Transform - pos: 31.5,33.5 - parent: 2 - - uid: 2566 - components: - - type: Transform - pos: 32.5,33.5 - parent: 2 - - uid: 2567 - components: - - type: Transform - pos: 33.5,33.5 - parent: 2 - uid: 2568 components: - type: Transform @@ -76748,16 +84626,6 @@ entities: - type: Transform pos: 34.5,38.5 parent: 2 - - uid: 2607 - components: - - type: Transform - pos: -2.5,14.5 - parent: 2 - - uid: 2608 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 2 - uid: 2617 components: - type: Transform @@ -76943,26 +84811,6 @@ entities: - type: Transform pos: 14.5,34.5 parent: 2 - - uid: 2666 - components: - - type: Transform - pos: -9.5,1.5 - parent: 2 - - uid: 2737 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 2 - - uid: 2738 - components: - - type: Transform - pos: 10.5,35.5 - parent: 2 - - uid: 2739 - components: - - type: Transform - pos: 10.5,34.5 - parent: 2 - uid: 2785 components: - type: Transform @@ -77294,12 +85142,7 @@ entities: - uid: 3065 components: - type: Transform - pos: 43.5,40.5 - parent: 2 - - uid: 3066 - components: - - type: Transform - pos: 43.5,39.5 + pos: 44.5,39.5 parent: 2 - uid: 3071 components: @@ -77376,26 +85219,40 @@ entities: - type: Transform pos: 46.5,40.5 parent: 2 + - uid: 3119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 - uid: 3125 components: - type: Transform pos: 50.5,45.5 parent: 2 + - uid: 3133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,28.5 + parent: 2 - uid: 3146 components: - type: Transform pos: 47.5,36.5 parent: 2 - - uid: 3147 - components: - - type: Transform - pos: 47.5,34.5 - parent: 2 - - uid: 3148 - components: - - type: Transform - pos: 47.5,35.5 - parent: 2 - uid: 3149 components: - type: Transform @@ -77406,240 +85263,76 @@ entities: - type: Transform pos: 47.5,32.5 parent: 2 - - uid: 3151 - components: - - type: Transform - pos: 47.5,31.5 - parent: 2 - - uid: 3152 - components: - - type: Transform - pos: 47.5,30.5 - parent: 2 - uid: 3153 components: - type: Transform pos: 47.5,29.5 parent: 2 - - uid: 3154 - components: - - type: Transform - pos: 47.5,28.5 - parent: 2 - uid: 3155 components: - type: Transform pos: 48.5,28.5 parent: 2 - - uid: 3156 - components: - - type: Transform - pos: 49.5,28.5 - parent: 2 - - uid: 3157 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - uid: 3158 components: - type: Transform pos: 51.5,28.5 parent: 2 - - uid: 3159 - components: - - type: Transform - pos: 51.5,29.5 - parent: 2 - - uid: 3160 - components: - - type: Transform - pos: 51.5,30.5 - parent: 2 - - uid: 3161 - components: - - type: Transform - pos: 51.5,31.5 - parent: 2 - - uid: 3162 - components: - - type: Transform - pos: 51.5,32.5 - parent: 2 - - uid: 3163 - components: - - type: Transform - pos: 51.5,33.5 - parent: 2 - uid: 3164 components: - type: Transform - pos: 51.5,34.5 - parent: 2 - - uid: 3165 - components: - - type: Transform - pos: 51.5,35.5 - parent: 2 - - uid: 3166 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 3167 - components: - - type: Transform - pos: 51.5,37.5 - parent: 2 - - uid: 3168 - components: - - type: Transform - pos: 51.5,38.5 + pos: 40.5,37.5 parent: 2 - uid: 3169 components: - type: Transform - pos: 52.5,37.5 + pos: 35.5,35.5 parent: 2 - uid: 3170 components: - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 3171 - components: - - type: Transform - pos: 52.5,39.5 - parent: 2 - - uid: 3172 - components: - - type: Transform - pos: 53.5,39.5 - parent: 2 - - uid: 3173 - components: - - type: Transform - pos: 53.5,38.5 - parent: 2 - - uid: 3174 - components: - - type: Transform - pos: 54.5,39.5 - parent: 2 - - uid: 3175 - components: - - type: Transform - pos: 54.5,40.5 - parent: 2 - - uid: 3176 - components: - - type: Transform - pos: 55.5,40.5 - parent: 2 - - uid: 3177 - components: - - type: Transform - pos: 55.5,39.5 + pos: 38.5,37.5 parent: 2 - uid: 3178 components: - type: Transform - pos: 56.5,39.5 + pos: 52.5,33.5 parent: 2 - uid: 3179 components: - type: Transform - pos: 56.5,40.5 + pos: 35.5,34.5 parent: 2 - uid: 3180 components: - type: Transform - pos: 57.5,40.5 + pos: 36.5,35.5 parent: 2 - uid: 3181 components: - type: Transform - pos: 57.5,39.5 + pos: 38.5,36.5 parent: 2 - uid: 3182 components: - type: Transform - pos: 58.5,39.5 - parent: 2 - - uid: 3183 - components: - - type: Transform - pos: 58.5,40.5 - parent: 2 - - uid: 3184 - components: - - type: Transform - pos: 59.5,39.5 - parent: 2 - - uid: 3185 - components: - - type: Transform - pos: 60.5,39.5 - parent: 2 - - uid: 3186 - components: - - type: Transform - pos: 60.5,38.5 - parent: 2 - - uid: 3187 - components: - - type: Transform - pos: 59.5,38.5 - parent: 2 - - uid: 3188 - components: - - type: Transform - pos: 60.5,37.5 - parent: 2 - - uid: 3189 - components: - - type: Transform - pos: 61.5,38.5 - parent: 2 - - uid: 3190 - components: - - type: Transform - pos: 61.5,37.5 - parent: 2 - - uid: 3191 - components: - - type: Transform - pos: 61.5,35.5 - parent: 2 - - uid: 3192 - components: - - type: Transform - pos: 61.5,34.5 - parent: 2 - - uid: 3193 - components: - - type: Transform - pos: 61.5,36.5 + rot: -1.5707963267948966 rad + pos: 69.5,-10.5 parent: 2 - uid: 3194 components: - type: Transform - pos: 61.5,33.5 + pos: 38.5,29.5 parent: 2 - uid: 3195 components: - type: Transform - pos: 61.5,32.5 + pos: 43.5,28.5 parent: 2 - uid: 3196 components: - type: Transform - pos: 61.5,31.5 - parent: 2 - - uid: 3197 - components: - - type: Transform - pos: 61.5,30.5 + pos: 43.5,27.5 parent: 2 - uid: 3198 components: @@ -77656,85 +85349,35 @@ entities: - type: Transform pos: 65.5,29.5 parent: 2 - - uid: 3215 + - uid: 3203 components: - type: Transform - pos: 55.5,32.5 + rot: -1.5707963267948966 rad + pos: 41.5,37.5 parent: 2 - - uid: 3216 + - uid: 3207 components: - type: Transform - pos: 54.5,32.5 + rot: 3.141592653589793 rad + pos: 32.5,32.5 parent: 2 - - uid: 3217 + - uid: 3210 components: - type: Transform - pos: 53.5,32.5 + rot: -1.5707963267948966 rad + pos: -4.5,-17.5 parent: 2 - - uid: 3218 + - uid: 3236 components: - type: Transform - pos: 52.5,32.5 - parent: 2 - - uid: 3219 - components: - - type: Transform - pos: 60.5,32.5 - parent: 2 - - uid: 3220 - components: - - type: Transform - pos: 59.5,32.5 - parent: 2 - - uid: 3221 - components: - - type: Transform - pos: 58.5,32.5 - parent: 2 - - uid: 3222 - components: - - type: Transform - pos: 57.5,32.5 - parent: 2 - - uid: 3254 - components: - - type: Transform - pos: 52.5,28.5 - parent: 2 - - uid: 3255 - components: - - type: Transform - pos: 53.5,28.5 + rot: -1.5707963267948966 rad + pos: 70.5,-13.5 parent: 2 - uid: 3256 components: - type: Transform - pos: 54.5,28.5 - parent: 2 - - uid: 3257 - components: - - type: Transform - pos: 55.5,28.5 - parent: 2 - - uid: 3258 - components: - - type: Transform - pos: 60.5,28.5 - parent: 2 - - uid: 3259 - components: - - type: Transform - pos: 59.5,28.5 - parent: 2 - - uid: 3260 - components: - - type: Transform - pos: 58.5,28.5 - parent: 2 - - uid: 3261 - components: - - type: Transform - pos: 57.5,28.5 + rot: 3.141592653589793 rad + pos: 48.5,29.5 parent: 2 - uid: 3262 components: @@ -77751,11 +85394,6 @@ entities: - type: Transform pos: 63.5,45.5 parent: 2 - - uid: 3267 - components: - - type: Transform - pos: 64.5,45.5 - parent: 2 - uid: 3268 components: - type: Transform @@ -77796,21 +85434,6 @@ entities: - type: Transform pos: 65.5,34.5 parent: 2 - - uid: 3276 - components: - - type: Transform - pos: 65.5,35.5 - parent: 2 - - uid: 3277 - components: - - type: Transform - pos: 65.5,36.5 - parent: 2 - - uid: 3278 - components: - - type: Transform - pos: 65.5,37.5 - parent: 2 - uid: 3279 components: - type: Transform @@ -77897,22 +85520,8 @@ entities: - uid: 3318 components: - type: Transform - pos: 55.5,50.5 - parent: 2 - - uid: 3319 - components: - - type: Transform - pos: 57.5,50.5 - parent: 2 - - uid: 3321 - components: - - type: Transform - pos: 55.5,51.5 - parent: 2 - - uid: 3322 - components: - - type: Transform - pos: 57.5,51.5 + rot: -1.5707963267948966 rad + pos: -7.5,-17.5 parent: 2 - uid: 3352 components: @@ -78014,16 +85623,6 @@ entities: - type: Transform pos: 68.5,35.5 parent: 2 - - uid: 3417 - components: - - type: Transform - pos: 70.5,22.5 - parent: 2 - - uid: 3418 - components: - - type: Transform - pos: 69.5,22.5 - parent: 2 - uid: 3419 components: - type: Transform @@ -78069,45 +85668,10 @@ entities: - type: Transform pos: 73.5,19.5 parent: 2 - - uid: 3428 - components: - - type: Transform - pos: 73.5,20.5 - parent: 2 - - uid: 3429 - components: - - type: Transform - pos: 73.5,21.5 - parent: 2 - - uid: 3430 - components: - - type: Transform - pos: 73.5,22.5 - parent: 2 - - uid: 3431 - components: - - type: Transform - pos: 72.5,22.5 - parent: 2 - - uid: 3432 - components: - - type: Transform - pos: 73.5,23.5 - parent: 2 - - uid: 3433 - components: - - type: Transform - pos: 73.5,24.5 - parent: 2 - - uid: 3434 - components: - - type: Transform - pos: 72.5,24.5 - parent: 2 - uid: 3435 components: - type: Transform - pos: 71.5,24.5 + pos: 72.5,24.5 parent: 2 - uid: 3436 components: @@ -78134,6 +85698,11 @@ entities: - type: Transform pos: 68.5,26.5 parent: 2 + - uid: 3445 + components: + - type: Transform + pos: 70.5,23.5 + parent: 2 - uid: 3449 components: - type: Transform @@ -78164,6 +85733,12 @@ entities: - type: Transform pos: 61.5,26.5 parent: 2 + - uid: 3456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,34.5 + parent: 2 - uid: 3462 components: - type: Transform @@ -79051,6 +86626,17 @@ entities: - type: Transform pos: 84.5,-11.5 parent: 2 + - uid: 3821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,31.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 - uid: 3829 components: - type: Transform @@ -79216,11 +86802,6 @@ entities: - type: Transform pos: 87.5,-17.5 parent: 2 - - uid: 3972 - components: - - type: Transform - pos: 11.5,-58.5 - parent: 2 - uid: 3989 components: - type: Transform @@ -79236,16 +86817,6 @@ entities: - type: Transform pos: 29.5,-59.5 parent: 2 - - uid: 3992 - components: - - type: Transform - pos: 11.5,-56.5 - parent: 2 - - uid: 3993 - components: - - type: Transform - pos: 11.5,-59.5 - parent: 2 - uid: 3994 components: - type: Transform @@ -79291,10 +86862,16 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 4139 + - uid: 4127 components: - type: Transform - pos: -27.5,10.5 + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 36.5,32.5 parent: 2 - uid: 4166 components: @@ -79410,6 +86987,11 @@ entities: - type: Transform pos: 50.5,-47.5 parent: 2 + - uid: 4313 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 - uid: 4329 components: - type: Transform @@ -79425,16 +87007,43 @@ entities: - type: Transform pos: 27.5,-44.5 parent: 2 - - uid: 4332 - components: - - type: Transform - pos: 27.5,-43.5 - parent: 2 - uid: 4333 components: - type: Transform pos: 33.5,-37.5 parent: 2 + - uid: 4346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,41.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-53.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 - uid: 4369 components: - type: Transform @@ -79500,6 +87109,22 @@ entities: - type: Transform pos: 28.5,-45.5 parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,40.5 + parent: 2 - uid: 4417 components: - type: Transform @@ -79570,30 +87195,61 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 + - uid: 4568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,26.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,26.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-47.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-49.5 + parent: 2 - uid: 4743 components: - type: Transform - pos: 44.5,27.5 + pos: -7.5,1.5 parent: 2 - - uid: 4745 + - uid: 4744 components: - type: Transform - pos: -27.5,13.5 + rot: 3.141592653589793 rad + pos: 52.5,32.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: 6.5,17.5 parent: 2 - uid: 4885 components: - type: Transform - pos: 13.5,35.5 + pos: 4.5,15.5 parent: 2 - - uid: 5287 + - uid: 5194 components: - type: Transform - pos: 6.5,18.5 + pos: 38.5,33.5 parent: 2 - - uid: 5288 + - uid: 5199 components: - type: Transform - pos: 4.5,18.5 + rot: 3.141592653589793 rad + pos: 59.5,30.5 parent: 2 - uid: 5291 components: @@ -79605,21 +87261,16 @@ entities: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 5298 + - uid: 5296 components: - type: Transform - pos: -13.5,1.5 + pos: 4.5,20.5 parent: 2 - uid: 5300 components: - type: Transform pos: 45.5,-41.5 parent: 2 - - uid: 5352 - components: - - type: Transform - pos: -14.5,1.5 - parent: 2 - uid: 5353 components: - type: Transform @@ -79630,6 +87281,12 @@ entities: - type: Transform pos: 2.5,9.5 parent: 2 + - uid: 5362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,41.5 + parent: 2 - uid: 5364 components: - type: Transform @@ -79665,6 +87322,27 @@ entities: - type: Transform pos: 69.5,26.5 parent: 2 + - uid: 5498 + components: + - type: Transform + pos: 70.5,21.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 44.5,40.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: 74.5,21.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,46.5 + parent: 2 - uid: 5724 components: - type: Transform @@ -79675,6 +87353,17 @@ entities: - type: Transform pos: 51.5,-11.5 parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 58.5,35.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,46.5 + parent: 2 - uid: 6120 components: - type: Transform @@ -79695,15 +87384,16 @@ entities: - type: Transform pos: 14.5,-40.5 parent: 2 + - uid: 6139 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 - uid: 6196 components: - type: Transform - pos: 69.5,-12.5 - parent: 2 - - uid: 6197 - components: - - type: Transform - pos: 70.5,-12.5 + rot: 3.141592653589793 rad + pos: 60.5,41.5 parent: 2 - uid: 6209 components: @@ -79725,6 +87415,12 @@ entities: - type: Transform pos: 56.5,-20.5 parent: 2 + - uid: 6335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 2 - uid: 6782 components: - type: Transform @@ -79745,31 +87441,33 @@ entities: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 6816 + - uid: 6814 components: - type: Transform - pos: -22.5,-15.5 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-17.5 parent: 2 - uid: 6822 components: - type: Transform pos: -4.5,-13.5 parent: 2 - - uid: 6838 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 2 - - uid: 6860 - components: - - type: Transform - pos: -15.5,14.5 - parent: 2 - uid: 6867 components: - type: Transform pos: 4.5,14.5 parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 - uid: 6880 components: - type: Transform @@ -79785,80 +87483,57 @@ entities: - type: Transform pos: 17.5,-12.5 parent: 2 - - uid: 6887 + - uid: 6889 components: - type: Transform - pos: -7.5,-7.5 + rot: 3.141592653589793 rad + pos: -14.5,1.5 parent: 2 - - uid: 6895 + - uid: 6896 components: - type: Transform - pos: -21.5,-15.5 + rot: 3.141592653589793 rad + pos: -21.5,1.5 parent: 2 - - uid: 6902 + - uid: 7251 components: - type: Transform - pos: 10.5,32.5 + pos: -14.5,14.5 parent: 2 - - uid: 6903 + - uid: 7252 components: - type: Transform - pos: 10.5,31.5 + pos: -15.5,14.5 parent: 2 - - uid: 6904 - components: - - type: Transform - pos: 10.5,30.5 - parent: 2 - - uid: 6905 - components: - - type: Transform - pos: 10.5,29.5 - parent: 2 - - uid: 6906 - components: - - type: Transform - pos: 12.5,32.5 - parent: 2 - - uid: 6907 - components: - - type: Transform - pos: 13.5,32.5 - parent: 2 - - uid: 6908 - components: - - type: Transform - pos: 11.5,32.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - pos: 14.5,32.5 - parent: 2 - - uid: 6910 - components: - - type: Transform - pos: 14.5,31.5 - parent: 2 - - uid: 6911 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - - uid: 6912 - components: - - type: Transform - pos: 14.5,30.5 - parent: 2 - - uid: 7466 + - uid: 7264 components: - type: Transform pos: -3.5,14.5 parent: 2 - - uid: 7471 + - uid: 7346 components: - type: Transform - pos: -1.5,14.5 + pos: 0.5,14.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 24.5,-44.5 parent: 2 - uid: 7474 components: @@ -79868,48 +87543,117 @@ entities: - uid: 7533 components: - type: Transform - pos: -4.5,14.5 + pos: -17.5,14.5 parent: 2 - uid: 7550 components: - type: Transform - pos: -5.5,14.5 + pos: -16.5,14.5 parent: 2 - - uid: 7551 - components: - - type: Transform - pos: -6.5,1.5 - parent: 2 - - uid: 7559 - components: - - type: Transform - pos: -11.5,1.5 - parent: 2 - - uid: 7587 - components: - - type: Transform - pos: -14.5,14.5 - parent: 2 - - uid: 7669 + - uid: 7585 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,0.5 + pos: 5.5,21.5 parent: 2 - - uid: 7712 + - uid: 7598 components: - type: Transform - pos: -16.5,14.5 + rot: -1.5707963267948966 rad + pos: -25.5,-15.5 parent: 2 - - uid: 7763 + - uid: 7605 components: - type: Transform - pos: -13.5,14.5 + rot: -1.5707963267948966 rad + pos: -25.5,-10.5 parent: 2 - - uid: 7840 + - uid: 7613 components: - type: Transform - pos: -18.5,14.5 + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,43.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + pos: 4.5,34.5 parent: 2 - uid: 7897 components: @@ -79941,11 +87685,6 @@ entities: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 7903 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - uid: 7904 components: - type: Transform @@ -80096,6 +87835,70 @@ entities: - type: Transform pos: 2.5,-27.5 parent: 2 + - uid: 8044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-55.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-58.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-56.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 8256 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 - uid: 8326 components: - type: Transform @@ -80126,6 +87929,56 @@ entities: - type: Transform pos: 44.5,16.5 parent: 2 + - uid: 8396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,26.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,40.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,41.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,31.5 + parent: 2 + - uid: 8700 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 8701 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 - uid: 8720 components: - type: Transform @@ -80356,6 +88209,12 @@ entities: - type: Transform pos: 116.5,-17.5 parent: 2 + - uid: 9175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-14.5 + parent: 2 - uid: 9217 components: - type: Transform @@ -80376,6 +88235,33 @@ entities: - type: Transform pos: 39.5,-17.5 parent: 2 + - uid: 9348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,34.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,34.5 + parent: 2 + - uid: 9726 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + pos: 58.5,33.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 - uid: 10089 components: - type: Transform @@ -80559,6 +88445,17 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-20.5 parent: 2 + - uid: 10319 + components: + - type: Transform + pos: 58.5,37.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,30.5 + parent: 2 - uid: 10745 components: - type: Transform @@ -80589,11 +88486,73 @@ entities: - type: Transform pos: 86.5,-21.5 parent: 2 + - uid: 10842 + components: + - type: Transform + pos: 37.5,35.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: 59.5,33.5 + parent: 2 - uid: 10878 components: - type: Transform pos: 26.5,-59.5 parent: 2 + - uid: 10967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-43.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 + parent: 2 + - uid: 10990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-56.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-43.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-50.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-54.5 + parent: 2 + - uid: 11280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,31.5 + parent: 2 - uid: 11398 components: - type: Transform @@ -80604,6 +88563,40 @@ entities: - type: Transform pos: 87.5,3.5 parent: 2 + - uid: 11613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 2 + - uid: 11676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,37.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 11693 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,20.5 + parent: 2 - uid: 11769 components: - type: Transform @@ -80654,20 +88647,123 @@ entities: - type: Transform pos: 104.5,-25.5 parent: 2 - - uid: 12835 + - uid: 11819 components: - type: Transform - pos: -23.5,-11.5 + rot: -1.5707963267948966 rad + pos: 3.5,39.5 parent: 2 - - uid: 12847 + - uid: 11820 components: - type: Transform - pos: -24.5,-11.5 + rot: 1.5707963267948966 rad + pos: 11.5,-53.5 parent: 2 - - uid: 12848 + - uid: 12102 components: - type: Transform - pos: -25.5,-11.5 + rot: 3.141592653589793 rad + pos: 54.5,42.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,42.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,42.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + pos: 70.5,22.5 + parent: 2 + - uid: 12424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,39.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,49.5 + parent: 2 + - uid: 12433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,51.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,50.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,50.5 + parent: 2 + - uid: 12436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,49.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,47.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,47.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,46.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-60.5 parent: 2 - uid: 12888 components: @@ -80739,11 +88835,6 @@ entities: - type: Transform pos: 50.5,-44.5 parent: 2 - - uid: 12910 - components: - - type: Transform - pos: -27.5,4.5 - parent: 2 - uid: 12920 components: - type: Transform @@ -80804,295 +88895,198 @@ entities: - type: Transform pos: 31.5,-49.5 parent: 2 - - uid: 12935 - components: - - type: Transform - pos: -27.5,-11.5 - parent: 2 - - uid: 12936 - components: - - type: Transform - pos: -15.5,1.5 - parent: 2 - - uid: 12937 - components: - - type: Transform - pos: -16.5,1.5 - parent: 2 - - uid: 12938 - components: - - type: Transform - pos: -17.5,1.5 - parent: 2 - - uid: 12939 - components: - - type: Transform - pos: -18.5,1.5 - parent: 2 - - uid: 12940 - components: - - type: Transform - pos: -19.5,1.5 - parent: 2 - uid: 12941 components: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 13079 - components: - - type: Transform - pos: -21.5,1.5 - parent: 2 - - uid: 13112 - components: - - type: Transform - pos: -23.5,1.5 - parent: 2 - uid: 13113 components: - type: Transform pos: -24.5,1.5 parent: 2 - - uid: 13121 + - uid: 13117 components: - type: Transform - pos: -22.5,1.5 + rot: 1.5707963267948966 rad + pos: 36.5,20.5 parent: 2 - - uid: 13143 + - uid: 13184 components: - type: Transform - pos: -25.5,1.5 + pos: 8.5,14.5 parent: 2 - - uid: 13144 + - uid: 13185 components: - type: Transform - pos: -26.5,1.5 + pos: 9.5,14.5 parent: 2 - - uid: 13145 + - uid: 13186 components: - type: Transform - pos: -27.5,1.5 + pos: 9.5,17.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + pos: 27.5,-37.5 parent: 2 - uid: 13249 components: - type: Transform - pos: -19.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,-10.5 parent: 2 - uid: 13250 components: - type: Transform - pos: -20.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 parent: 2 - - uid: 13251 + - uid: 13259 components: - type: Transform - pos: -21.5,14.5 + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 parent: 2 - - uid: 13252 + - uid: 13263 components: - type: Transform - pos: -22.5,14.5 + pos: -17.5,-21.5 parent: 2 - - uid: 13253 + - uid: 13264 components: - type: Transform - pos: -23.5,14.5 + rot: 1.5707963267948966 rad + pos: -21.5,-2.5 parent: 2 - - uid: 13254 + - uid: 13265 components: - type: Transform - pos: -24.5,14.5 + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 parent: 2 - - uid: 13255 + - uid: 13266 components: - type: Transform - pos: -25.5,14.5 + pos: -18.5,-21.5 parent: 2 - - uid: 13256 + - uid: 13273 components: - type: Transform - pos: -26.5,14.5 + pos: -20.5,-23.5 parent: 2 - - uid: 13257 + - uid: 13274 components: - type: Transform - pos: -27.5,14.5 + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 parent: 2 - - uid: 13277 + - uid: 13275 components: - type: Transform - pos: -16.5,-22.5 - parent: 2 - - uid: 13278 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 2 - - uid: 13279 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 2 - - uid: 13280 - components: - - type: Transform - pos: -19.5,-22.5 + pos: 2.5,-18.5 parent: 2 - uid: 13281 components: - type: Transform - pos: -20.5,-22.5 - parent: 2 - - uid: 13282 - components: - - type: Transform - pos: -21.5,-22.5 - parent: 2 - - uid: 13283 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 2 - - uid: 13284 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 2 - - uid: 13285 - components: - - type: Transform - pos: -14.5,-21.5 - parent: 2 - - uid: 13286 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 2 - - uid: 13287 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 2 - - uid: 13288 - components: - - type: Transform - pos: -11.5,-21.5 + rot: 3.141592653589793 rad + pos: 54.5,51.5 parent: 2 - uid: 13289 components: - type: Transform - pos: -10.5,-21.5 + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 parent: 2 - - uid: 13290 + - uid: 13303 components: - type: Transform - pos: -9.5,-21.5 - parent: 2 - - uid: 13291 - components: - - type: Transform - pos: -23.5,-21.5 - parent: 2 - - uid: 13292 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 2 - - uid: 13293 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 - - uid: 13294 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 - - uid: 13295 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 2 - - uid: 13296 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 2 - - uid: 13297 - components: - - type: Transform - pos: -29.5,-11.5 - parent: 2 - - uid: 13298 - components: - - type: Transform - pos: -29.5,-10.5 - parent: 2 - - uid: 13299 - components: - - type: Transform - pos: -24.5,-21.5 - parent: 2 - - uid: 13300 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 2 - - uid: 13301 - components: - - type: Transform - pos: -26.5,-21.5 - parent: 2 - - uid: 13302 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 2 - - uid: 13304 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 2 - - uid: 13305 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 2 - - uid: 13306 - components: - - type: Transform - pos: -27.5,-7.5 + rot: -1.5707963267948966 rad + pos: -25.5,-18.5 parent: 2 - uid: 13307 components: - type: Transform - pos: -27.5,-6.5 + rot: -1.5707963267948966 rad + pos: -27.5,-23.5 parent: 2 - uid: 13308 components: - type: Transform - pos: -27.5,-5.5 + rot: -1.5707963267948966 rad + pos: -26.5,-19.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 parent: 2 - uid: 13310 components: - type: Transform - pos: -27.5,-3.5 + rot: -1.5707963267948966 rad + pos: -26.5,-23.5 parent: 2 - uid: 13311 components: - type: Transform - pos: -27.5,-2.5 + rot: -1.5707963267948966 rad + pos: -25.5,-23.5 parent: 2 - - uid: 13312 + - uid: 13315 components: - type: Transform - pos: -27.5,3.5 + rot: -1.5707963267948966 rad + pos: -21.5,-23.5 parent: 2 - - uid: 13314 + - uid: 13316 components: - type: Transform - pos: -27.5,-0.5 + pos: -24.5,-23.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 13342 + components: + - type: Transform + pos: -8.5,-21.5 parent: 2 - uid: 13444 components: @@ -81167,13 +89161,133 @@ entities: - uid: 13487 components: - type: Transform - pos: -27.5,5.5 + pos: -4.5,-20.5 parent: 2 - - uid: 13708 + - uid: 13493 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 13561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-11.5 + parent: 2 + - uid: 13562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-10.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-14.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 13566 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-20.5 + pos: 60.5,31.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,30.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,30.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + pos: 73.5,21.5 + parent: 2 + - uid: 13638 + components: + - type: Transform + pos: 75.5,21.5 + parent: 2 + - uid: 13643 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + pos: 28.5,-37.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + pos: 30.5,-37.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + pos: 27.5,-39.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + pos: 27.5,-40.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: 10.5,15.5 parent: 2 - uid: 13709 components: @@ -81187,8 +89301,1122 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 2 + - uid: 13767 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - uid: 13770 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 13772 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 + - uid: 13777 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 + - uid: 13781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-60.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 2 + - uid: 13785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 2 + - uid: 13791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 2 + - uid: 13828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 2 + - uid: 13830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 2 + - uid: 13831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - uid: 13832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - uid: 13833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 2 + - uid: 13834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 13836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 2 + - uid: 13837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 2 + - uid: 13838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 2 + - uid: 13842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 2 + - uid: 13843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - uid: 13846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 2 + - uid: 13847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 2 + - uid: 13848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 2 + - uid: 13849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 2 + - uid: 13873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - uid: 13910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 + - uid: 13911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-24.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,7.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 2 + - uid: 13916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,14.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,14.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,13.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,10.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + pos: 71.5,24.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,28.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,34.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,28.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: 84.5,26.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + pos: 80.5,27.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + pos: 80.5,26.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + pos: 87.5,26.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,33.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + pos: 83.5,34.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,32.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + pos: 87.5,28.5 + parent: 2 + - uid: 14213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,32.5 + parent: 2 + - uid: 14214 + components: + - type: Transform + pos: 83.5,31.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + pos: 87.5,31.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 87.5,32.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-60.5 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: 83.5,28.5 + parent: 2 + - uid: 14226 + components: + - type: Transform + pos: 83.5,27.5 + parent: 2 + - uid: 14227 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 14228 + components: + - type: Transform + pos: 82.5,26.5 + parent: 2 + - uid: 14229 + components: + - type: Transform + pos: 85.5,27.5 + parent: 2 + - uid: 14233 + components: + - type: Transform + pos: 82.5,28.5 + parent: 2 + - uid: 14234 + components: + - type: Transform + pos: 85.5,33.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,35.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,35.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + pos: 86.5,33.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + pos: 83.5,32.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: 87.5,29.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + pos: 84.5,33.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + pos: 84.5,27.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + pos: 86.5,27.5 + parent: 2 + - uid: 14261 + components: + - type: Transform + pos: 87.5,27.5 + parent: 2 + - uid: 14262 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 14264 + components: + - type: Transform + pos: 83.5,26.5 + parent: 2 + - uid: 14266 + components: + - type: Transform + pos: 84.5,34.5 + parent: 2 + - uid: 14267 + components: + - type: Transform + pos: 88.5,26.5 + parent: 2 + - uid: 14268 + components: + - type: Transform + pos: 87.5,33.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + pos: 87.5,34.5 + parent: 2 + - uid: 14270 + components: + - type: Transform + pos: 88.5,34.5 + parent: 2 + - uid: 14271 + components: + - type: Transform + pos: 88.5,33.5 + parent: 2 + - uid: 14287 + components: + - type: Transform + pos: 85.5,34.5 + parent: 2 + - uid: 14288 + components: + - type: Transform + pos: 86.5,34.5 + parent: 2 + - uid: 14289 + components: + - type: Transform + pos: 83.5,35.5 + parent: 2 + - uid: 14290 + components: + - type: Transform + pos: 84.5,35.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + pos: 85.5,26.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + pos: 86.5,26.5 + parent: 2 + - uid: 14293 + components: + - type: Transform + pos: 83.5,25.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + pos: 84.5,25.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + pos: 87.5,25.5 + parent: 2 + - uid: 14296 + components: + - type: Transform + pos: 88.5,25.5 + parent: 2 + - uid: 14297 + components: + - type: Transform + pos: 87.5,35.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: 88.5,35.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + pos: 89.5,27.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + pos: 89.5,26.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + pos: 90.5,26.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + pos: 91.5,26.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + pos: 91.5,27.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + pos: 90.5,27.5 + parent: 2 + - uid: 14311 + components: + - type: Transform + pos: 91.5,25.5 + parent: 2 + - uid: 14312 + components: + - type: Transform + pos: 89.5,33.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + pos: 89.5,34.5 + parent: 2 + - uid: 14314 + components: + - type: Transform + pos: 90.5,34.5 + parent: 2 + - uid: 14315 + components: + - type: Transform + pos: 90.5,33.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: 91.5,33.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + pos: 91.5,34.5 + parent: 2 + - uid: 14318 + components: + - type: Transform + pos: 91.5,35.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,25.5 + parent: 2 + - uid: 14322 + components: + - type: Transform + pos: 92.5,26.5 + parent: 2 + - uid: 14323 + components: + - type: Transform + pos: 92.5,25.5 + parent: 2 + - uid: 14324 + components: + - type: Transform + pos: 93.5,26.5 + parent: 2 + - uid: 14325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,25.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,35.5 + parent: 2 + - uid: 14341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,35.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,32.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,32.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,25.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,34.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,35.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,34.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,34.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,26.5 + parent: 2 + - uid: 14353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,26.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,25.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,26.5 + parent: 2 + - uid: 14356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,32.5 + parent: 2 + - uid: 14359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,28.5 + parent: 2 + - uid: 14366 + components: + - type: Transform + pos: 94.5,29.5 + parent: 2 + - uid: 14480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,25.5 + parent: 2 + - uid: 14481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,26.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,27.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,28.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,29.5 + parent: 2 + - uid: 14485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,30.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,31.5 + parent: 2 + - uid: 14487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,32.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,33.5 + parent: 2 + - uid: 14489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,34.5 + parent: 2 + - uid: 14490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,34.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,34.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,35.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,35.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,35.5 + parent: 2 + - uid: 14495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,35.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,35.5 + parent: 2 + - uid: 14497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,34.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,33.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,32.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,31.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,30.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,29.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,28.5 + parent: 2 + - uid: 14504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,27.5 + parent: 2 + - uid: 14505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,26.5 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: 99.5,27.5 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: 99.5,29.5 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: 99.5,30.5 + parent: 2 + - uid: 14511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,31.5 + parent: 2 + - uid: 14513 + components: + - type: Transform + pos: 99.5,33.5 + parent: 2 + - uid: 14519 + components: + - type: Transform + pos: 94.5,31.5 + parent: 2 + - uid: 14745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-12.5 + parent: 2 + - uid: 14746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-13.5 + parent: 2 + - uid: 14748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-14.5 + parent: 2 + - uid: 14773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-10.5 + parent: 2 + - uid: 14774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-11.5 + parent: 2 + - uid: 14776 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 14809 + components: + - type: Transform + pos: 92.5,24.5 + parent: 2 + - uid: 14810 + components: + - type: Transform + pos: 93.5,24.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + pos: 94.5,24.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: 95.5,24.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: 96.5,24.5 + parent: 2 + - uid: 14814 + components: + - type: Transform + pos: 92.5,36.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + pos: 93.5,36.5 + parent: 2 + - uid: 14816 + components: + - type: Transform + pos: 94.5,36.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + pos: 95.5,36.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + pos: 96.5,36.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 14828 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 14835 + components: + - type: Transform + pos: 52.5,44.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + pos: 62.5,31.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,36.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,35.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-12.5 + parent: 2 + - uid: 14965 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 14968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,41.5 + parent: 2 + - uid: 14969 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 14973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,41.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-54.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 14967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,41.5 + parent: 2 + - uid: 14971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,40.5 + parent: 2 + - uid: 14975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,38.5 + parent: 2 - proto: WallSolid entities: + - uid: 51 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 - uid: 109 components: - type: Transform @@ -81279,11 +90507,6 @@ entities: - type: Transform pos: 69.5,-6.5 parent: 2 - - uid: 237 - components: - - type: Transform - pos: 7.5,14.5 - parent: 2 - uid: 238 components: - type: Transform @@ -81399,25 +90622,10 @@ entities: - type: Transform pos: 7.5,11.5 parent: 2 - - uid: 448 + - uid: 433 components: - type: Transform - pos: 8.5,14.5 - parent: 2 - - uid: 449 - components: - - type: Transform - pos: 9.5,14.5 - parent: 2 - - uid: 450 - components: - - type: Transform - pos: 10.5,14.5 - parent: 2 - - uid: 451 - components: - - type: Transform - pos: 11.5,14.5 + pos: 10.5,32.5 parent: 2 - uid: 452 components: @@ -81624,6 +90832,16 @@ entities: - type: Transform pos: 43.5,-11.5 parent: 2 + - uid: 691 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 - uid: 696 components: - type: Transform @@ -81719,11 +90937,6 @@ entities: - type: Transform pos: 30.5,-29.5 parent: 2 - - uid: 1041 - components: - - type: Transform - pos: 27.5,-37.5 - parent: 2 - uid: 1049 components: - type: Transform @@ -81734,36 +90947,6 @@ entities: - type: Transform pos: 13.5,16.5 parent: 2 - - uid: 1053 - components: - - type: Transform - pos: 10.5,18.5 - parent: 2 - - uid: 1054 - components: - - type: Transform - pos: 10.5,17.5 - parent: 2 - - uid: 1055 - components: - - type: Transform - pos: 10.5,16.5 - parent: 2 - - uid: 1056 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - - uid: 1057 - components: - - type: Transform - pos: 12.5,20.5 - parent: 2 - - uid: 1058 - components: - - type: Transform - pos: 11.5,20.5 - parent: 2 - uid: 1059 components: - type: Transform @@ -82204,20 +91387,10 @@ entities: - type: Transform pos: 33.5,12.5 parent: 2 - - uid: 1208 + - uid: 1211 components: - type: Transform - pos: 28.5,-37.5 - parent: 2 - - uid: 1209 - components: - - type: Transform - pos: 29.5,-37.5 - parent: 2 - - uid: 1210 - components: - - type: Transform - pos: 30.5,-37.5 + pos: 16.5,25.5 parent: 2 - uid: 1482 components: @@ -82554,11 +91727,6 @@ entities: - type: Transform pos: 50.5,-15.5 parent: 2 - - uid: 1957 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 2 - uid: 1958 components: - type: Transform @@ -82649,36 +91817,16 @@ entities: - type: Transform pos: 21.5,19.5 parent: 2 - - uid: 2025 + - uid: 2018 components: - type: Transform - pos: 6.5,29.5 - parent: 2 - - uid: 2026 - components: - - type: Transform - pos: 7.5,29.5 + pos: 14.5,32.5 parent: 2 - uid: 2034 components: - type: Transform pos: 14.5,27.5 parent: 2 - - uid: 2044 - components: - - type: Transform - pos: 16.5,23.5 - parent: 2 - - uid: 2045 - components: - - type: Transform - pos: 16.5,24.5 - parent: 2 - - uid: 2046 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - uid: 2047 components: - type: Transform @@ -82694,6 +91842,36 @@ entities: - type: Transform pos: 14.5,26.5 parent: 2 + - uid: 2076 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 - uid: 2093 components: - type: Transform @@ -82869,16 +92047,6 @@ entities: - type: Transform pos: 31.5,19.5 parent: 2 - - uid: 2360 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - - uid: 2361 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - uid: 2496 components: - type: Transform @@ -83049,21 +92217,6 @@ entities: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 2874 - components: - - type: Transform - pos: 68.5,-12.5 - parent: 2 - - uid: 2875 - components: - - type: Transform - pos: 68.5,-13.5 - parent: 2 - - uid: 2876 - components: - - type: Transform - pos: 68.5,-14.5 - parent: 2 - uid: 2877 components: - type: Transform @@ -83194,16 +92347,6 @@ entities: - type: Transform pos: 64.5,-11.5 parent: 2 - - uid: 2949 - components: - - type: Transform - pos: 68.5,-10.5 - parent: 2 - - uid: 2950 - components: - - type: Transform - pos: 68.5,-11.5 - parent: 2 - uid: 2958 components: - type: Transform @@ -83469,36 +92612,6 @@ entities: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 3203 - components: - - type: Transform - pos: 56.5,36.5 - parent: 2 - - uid: 3204 - components: - - type: Transform - pos: 56.5,37.5 - parent: 2 - - uid: 3205 - components: - - type: Transform - pos: 57.5,37.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: 55.5,37.5 - parent: 2 - - uid: 3207 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 57.5,35.5 - parent: 2 - uid: 3356 components: - type: Transform @@ -83589,6 +92702,12 @@ entities: - type: Transform pos: 68.5,34.5 parent: 2 + - uid: 3461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 2 - uid: 3523 components: - type: Transform @@ -83974,16 +93093,6 @@ entities: - type: Transform pos: 72.5,-11.5 parent: 2 - - uid: 3821 - components: - - type: Transform - pos: 70.5,-14.5 - parent: 2 - - uid: 3822 - components: - - type: Transform - pos: 69.5,-14.5 - parent: 2 - uid: 3823 components: - type: Transform @@ -84075,51 +93184,6 @@ entities: - type: Transform pos: 28.5,-20.5 parent: 2 - - uid: 4312 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - - uid: 4313 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 4319 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 4320 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 2 - - uid: 4321 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 4322 - components: - - type: Transform - pos: 27.5,-39.5 - parent: 2 - - uid: 4323 - components: - - type: Transform - pos: 27.5,-40.5 - parent: 2 - - uid: 4324 - components: - - type: Transform - pos: 27.5,-41.5 - parent: 2 - - uid: 4326 - components: - - type: Transform - pos: 27.5,-42.5 - parent: 2 - uid: 5057 components: - type: Transform @@ -84156,6 +93220,12 @@ entities: - type: Transform pos: 32.5,-11.5 parent: 2 + - uid: 5421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 - uid: 5441 components: - type: Transform @@ -84286,10 +93356,10 @@ entities: - type: Transform pos: 75.5,5.5 parent: 2 - - uid: 7896 + - uid: 8169 components: - type: Transform - pos: 10.5,15.5 + pos: 13.5,32.5 parent: 2 - uid: 8805 components: @@ -84406,6 +93476,39 @@ entities: - type: Transform pos: 76.5,8.5 parent: 2 + - uid: 13189 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 14725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-13.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-17.5 + parent: 2 + - uid: 14769 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-14.5 + parent: 2 - proto: WallSolidRust entities: - uid: 7884 @@ -84539,20 +93642,8 @@ entities: - 0 - 0 - 0 -- proto: WardrobePrison - entities: - - uid: 2308 - components: - - type: Transform - pos: 41.5,33.5 - parent: 2 - proto: WardrobePrisonFilled entities: - - uid: 2325 - components: - - type: Transform - pos: 36.5,31.5 - parent: 2 - uid: 8686 components: - type: Transform @@ -84563,6 +93654,16 @@ entities: - type: Transform pos: 29.5,17.5 parent: 2 + - uid: 13591 + components: + - type: Transform + pos: 58.5,31.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 - proto: WardrobeVirologyFilled entities: - uid: 10910 @@ -84656,11 +93757,6 @@ entities: parent: 2 - proto: WaterTankFull entities: - - uid: 201 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - uid: 606 components: - type: Transform @@ -84671,11 +93767,6 @@ entities: - type: Transform pos: 18.5,26.5 parent: 2 - - uid: 5532 - components: - - type: Transform - pos: 65.5,18.5 - parent: 2 - uid: 5715 components: - type: Transform @@ -84686,6 +93777,11 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 + - uid: 8830 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 - uid: 10790 components: - type: Transform @@ -84701,6 +93797,16 @@ entities: - type: Transform pos: 46.5,-19.5 parent: 2 + - uid: 13608 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 - proto: WaterTankHighCapacity entities: - uid: 4277 @@ -84722,20 +93828,15 @@ entities: parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 622 - components: - - type: Transform - pos: 41.5,24.5 - parent: 2 - uid: 2050 components: - type: Transform pos: 34.5,41.5 parent: 2 - - uid: 5062 + - uid: 3235 components: - type: Transform - pos: 36.5,20.5 + pos: 36.5,26.5 parent: 2 - uid: 7979 components: @@ -84743,6 +93844,16 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 - uid: 11146 components: - type: Transform @@ -84779,17 +93890,22 @@ entities: parent: 2 - type: Physics canCollide: False + - uid: 14564 + components: + - type: Transform + pos: 90.5,28.5 + parent: 2 - proto: WeaponDisabler entities: - - uid: 10135 + - uid: 2287 components: - type: Transform - pos: 41.567085,22.308064 + pos: 36.50164,27.085938 parent: 2 - - uid: 10136 + - uid: 10139 components: - type: Transform - pos: 41.567085,22.558064 + pos: 36.48081,27.346535 parent: 2 - proto: WeaponSubMachineGunWt550 entities: @@ -84798,6 +93914,43 @@ entities: - type: Transform pos: 45.454727,23.618372 parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 14238 + components: + - type: Transform + pos: 86.5,32.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 84.5,32.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: 92.5,33.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + pos: 96.5,33.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 96.5,27.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: 92.5,27.5 + parent: 2 - proto: WeedSpray entities: - uid: 4061 @@ -84807,6 +93960,11 @@ entities: parent: 2 - proto: WelderIndustrial entities: + - uid: 7886 + components: + - type: Transform + pos: 16.569122,-42.41484 + parent: 2 - uid: 12300 components: - type: Transform @@ -84814,11 +93972,6 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 200 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 2 - uid: 800 components: - type: Transform @@ -84829,6 +93982,11 @@ entities: - type: Transform pos: 17.5,26.5 parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 - uid: 5391 components: - type: Transform @@ -84849,21 +94007,31 @@ entities: - type: Transform pos: 30.5,-17.5 parent: 2 + - uid: 9899 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 2 - uid: 10789 components: - type: Transform pos: 56.5,-17.5 parent: 2 - - uid: 10840 - components: - - type: Transform - pos: 45.5,42.5 - parent: 2 - uid: 12406 components: - type: Transform pos: 47.5,-19.5 parent: 2 + - uid: 13659 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 - proto: WetFloorSign entities: - uid: 12306 @@ -84902,12 +94070,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 - - uid: 2318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,35.5 - parent: 2 - uid: 2528 components: - type: Transform @@ -84934,6 +94096,13 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-9.5 parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 7250 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 - proto: WindoorChapelLocked entities: - uid: 9730 @@ -84970,6 +94139,16 @@ entities: parent: 2 - proto: WindoorSecure entities: + - uid: 1318 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 - uid: 5266 components: - type: Transform @@ -84997,16 +94176,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,31.5 parent: 2 - - uid: 7942 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 2 - - uid: 7943 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - uid: 8950 components: - type: Transform @@ -85018,19 +94187,25 @@ entities: - type: Transform pos: 80.5,-2.5 parent: 2 + - uid: 13596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,40.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,32.5 + parent: 2 - proto: WindoorSecureArmoryLocked entities: - - uid: 7679 + - uid: 13091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 - parent: 2 - - uid: 7752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,21.5 + rot: -1.5707963267948966 rad + pos: 36.5,18.5 parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: @@ -85048,23 +94223,12 @@ entities: parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 4556 - components: - - type: Transform - pos: 9.5,20.5 - parent: 2 - uid: 10119 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,22.5 parent: 2 - - uid: 12840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,20.5 - parent: 2 - proto: WindoorSecureChemistryLocked entities: - uid: 5139 @@ -85097,40 +94261,49 @@ entities: - type: Transform pos: 14.5,38.5 parent: 2 - - uid: 13599 + - uid: 14210 components: - type: Transform - pos: 56.5,34.5 + rot: 3.141592653589793 rad + pos: 85.5,31.5 parent: 2 - - uid: 13600 + - uid: 14273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,36.5 + pos: 84.5,29.5 parent: 2 - - uid: 13601 + - uid: 14274 + components: + - type: Transform + pos: 85.5,29.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 14362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,36.5 + pos: 90.5,30.5 parent: 2 - - uid: 13654 + - uid: 14524 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,30.5 + pos: 95.5,30.5 parent: 2 - - uid: 13655 + - uid: 14651 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 14658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,31.5 - parent: 2 - - uid: 13761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,29.5 + pos: 72.5,20.5 parent: 2 - proto: WindoorSecureEngineeringLocked entities: @@ -85173,6 +94346,32 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,3.5 parent: 2 + - uid: 12159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,1.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,1.5 + parent: 2 + - uid: 14991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,1.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 14738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,29.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 3513 @@ -85223,24 +94422,12 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,25.5 parent: 2 - - uid: 2428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - uid: 2429 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,25.5 parent: 2 - - uid: 2471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - uid: 7738 components: - type: Transform @@ -85258,6 +94445,12 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 + - uid: 12661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 - proto: Window entities: - uid: 142 @@ -85331,16 +94524,6 @@ entities: - type: Transform pos: 28.5,-17.5 parent: 2 - - uid: 2086 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 2090 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - uid: 2184 components: - type: Transform @@ -85421,10 +94604,15 @@ entities: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 5004 + - uid: 4321 components: - type: Transform - pos: 43.5,1.5 + pos: 7.5,29.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: 6.5,29.5 parent: 2 - uid: 5005 components: @@ -85451,11 +94639,28 @@ entities: - type: Transform pos: 58.5,-3.5 parent: 2 + - uid: 7238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 2 - uid: 9064 components: - type: Transform pos: 67.5,-18.5 parent: 2 + - uid: 9243 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 2 - uid: 10802 components: - type: Transform @@ -85504,18 +94709,6 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 6791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-13.5 - parent: 2 - - uid: 6792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 2 - uid: 7776 components: - type: Transform @@ -85550,26 +94743,6 @@ entities: - type: Transform pos: 58.5,12.5 parent: 2 - - uid: 10844 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 10845 - components: - - type: Transform - pos: 46.5,32.5 - parent: 2 - - uid: 11860 - components: - - type: Transform - pos: 40.5,35.5 - parent: 2 - - uid: 12373 - components: - - type: Transform - pos: 41.5,35.5 - parent: 2 - uid: 12999 components: - type: Transform @@ -85657,24 +94830,6 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 77 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - - uid: 78 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 2 - - uid: 81 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 2 - uid: 135 components: - type: Transform @@ -85687,12 +94842,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-15.5 parent: 2 - - uid: 358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 2 - uid: 673 components: - type: Transform @@ -85744,12 +94893,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 - - uid: 2463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,19.5 - parent: 2 - uid: 2733 components: - type: Transform @@ -85768,191 +94911,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-30.5 parent: 2 - - uid: 4346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,34.5 - parent: 2 - - uid: 4347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,35.5 - parent: 2 - - uid: 4348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,36.5 - parent: 2 - - uid: 4349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,38.5 - parent: 2 - - uid: 4351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,39.5 - parent: 2 - - uid: 4360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,40.5 - parent: 2 - - uid: 4361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,39.5 - parent: 2 - - uid: 4362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,40.5 - parent: 2 - - uid: 4363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,40.5 - parent: 2 - - uid: 4364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,41.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,41.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,41.5 - parent: 2 - - uid: 4367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,41.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,41.5 - parent: 2 - - uid: 4397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,41.5 - parent: 2 - - uid: 4398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,41.5 - parent: 2 - - uid: 4399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,41.5 - parent: 2 - - uid: 4400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,41.5 - parent: 2 - - uid: 4401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,40.5 - parent: 2 - - uid: 4402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,40.5 - parent: 2 - - uid: 4403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,40.5 - parent: 2 - - uid: 4404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,39.5 - parent: 2 - - uid: 4405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,36.5 - parent: 2 - - uid: 4406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,39.5 - parent: 2 - - uid: 4408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,38.5 - parent: 2 - - uid: 4409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,37.5 - parent: 2 - - uid: 4410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,35.5 - parent: 2 - - uid: 4411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,33.5 - parent: 2 - - uid: 4412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,32.5 - parent: 2 - - uid: 4413 - components: - - type: Transform - pos: 50.5,32.5 - parent: 2 - - uid: 4414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,34.5 - parent: 2 - uid: 4555 components: - type: Transform @@ -86001,12 +94959,56 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-29.5 parent: 2 + - uid: 6198 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,26.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 - uid: 6832 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 + - uid: 6884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 - uid: 7762 components: - type: Transform @@ -86197,55 +95199,93 @@ entities: rot: 3.141592653589793 rad pos: 29.5,5.5 parent: 2 - - uid: 13595 + - uid: 12766 components: - type: Transform - pos: 55.5,34.5 + pos: 46.5,37.5 parent: 2 - - uid: 13596 + - uid: 13121 components: - type: Transform - pos: 57.5,34.5 + rot: 1.5707963267948966 rad + pos: -13.5,0.5 parent: 2 - - uid: 13597 + - uid: 13594 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,34.5 + pos: 58.5,41.5 parent: 2 - - uid: 13598 + - uid: 13595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,31.5 + parent: 2 + - uid: 14199 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,34.5 + pos: 77.5,29.5 parent: 2 - - uid: 13627 + - uid: 14200 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,33.5 + pos: 77.5,30.5 parent: 2 - - uid: 13628 + - uid: 14201 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,32.5 + pos: 77.5,31.5 parent: 2 - - uid: 13629 + - uid: 14203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,27.5 + parent: 2 + - uid: 14235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,32.5 + parent: 2 + - uid: 14249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,37.5 + pos: 84.5,32.5 parent: 2 - - uid: 13630 + - uid: 14357 components: - type: Transform - pos: 62.5,32.5 + rot: 1.5707963267948966 rad + pos: 90.5,32.5 parent: 2 - - uid: 13652 + - uid: 14358 components: - type: Transform - pos: 52.5,30.5 + rot: 1.5707963267948966 rad + pos: 90.5,31.5 + parent: 2 + - uid: 14360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,28.5 + parent: 2 + - uid: 14361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,29.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + pos: 82.5,36.5 parent: 2 - proto: Wirecutter entities: diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index 8384e006df..e59aad9da3 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -60,6 +60,9 @@ reagents: - ReagentId: UncookedAnimalProteins Quantity: 5 + - type: Item + size: Small + heldPrefix: lungs - type: entity id: OrganAnimalStomach @@ -86,6 +89,9 @@ groups: - id: Food - id: Drink + - type: Item + size: Small + heldPrefix: stomach - type: entity id: OrganMouseStomach @@ -97,6 +103,9 @@ solutions: stomach: maxVol: 30 + - type: Item + size: Small + heldPrefix: stomach - type: entity id: OrganAnimalLiver @@ -113,6 +122,9 @@ groups: - id: Alcohol rateModifier: 0.1 + - type: Item + size: Small + heldPrefix: liver - type: entity id: OrganAnimalHeart @@ -130,6 +142,9 @@ - id: Medicine - id: Poison - id: Narcotic + - type: Item + size: Small + heldPrefix: heart - type: entity id: OrganAnimalKidneys @@ -146,3 +161,6 @@ maxReagents: 5 metabolizerTypes: [ Animal ] removeEmpty: true + - type: Item + size: Small + heldPrefix: kidneys diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index 29ca393d13..c7542ae111 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -34,6 +34,9 @@ - type: Sprite sprite: Mobs/Species/Arachnid/organs.rsi state: stomach + - type: Item + size: Small + heldPrefix: stomach - type: Stomach updateInterval: 1.5 - type: SolutionContainerManager @@ -91,6 +94,9 @@ components: - type: Sprite state: heart-on + - type: Item + size: Small + heldPrefix: heart - type: Metabolizer updateInterval: 1.5 maxReagents: 2 @@ -107,6 +113,9 @@ description: "Pairing suggestion: chianti and fava beans." categories: [ HideSpawnMenu ] components: + - type: Item + size: Small + heldPrefix: liver - type: Sprite state: liver - type: Metabolizer # The liver metabolizes certain chemicals only, like alcohol. @@ -129,6 +138,9 @@ - state: kidney-l - state: kidney-r # The kidneys just remove anything that doesn't currently have any metabolisms, as a stopgap. + - type: Item + size: Small + heldPrefix: kidneys - type: Metabolizer updateInterval: 1.5 maxReagents: 5 @@ -145,6 +157,9 @@ layers: - state: eyeball-l - state: eyeball-r + - type: Item + size: Small + heldPrefix: eyeballs - type: entity id: OrganArachnidTongue diff --git a/Resources/Prototypes/Body/Organs/diona.yml b/Resources/Prototypes/Body/Organs/diona.yml index e248355df2..bf865a07fd 100644 --- a/Resources/Prototypes/Body/Organs/diona.yml +++ b/Resources/Prototypes/Body/Organs/diona.yml @@ -29,8 +29,11 @@ id: OrganDionaBrain parent: [BaseDionaOrgan, OrganHumanBrain] name: brain - description: "The source of incredible, unending intelligence. Honk." + description: "The central hub of a diona's pseudo-neurological activity, its root-like tendrils search for its former body." components: + - type: Item + size: Small + heldPrefix: brain - type: Sprite state: brain - type: SolutionContainerManager @@ -64,7 +67,7 @@ id: OrganDionaStomach parent: BaseDionaOrgan name: stomach - description: "Gross. This is hard to stomach." + description: "The diona's equivalent of a stomach, it reeks of asparagus and vinegar." components: - type: Sprite state: stomach @@ -90,18 +93,21 @@ - id: Narcotic - id: Alcohol rateModifier: 0.1 + - type: Item + size: Small + heldPrefix: stomach - type: entity id: OrganDionaLungs parent: BaseDionaOrgan name: lungs - description: "Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier." + description: "A spongy mess of slimy, leaf-like structures. Capable of breathing both carbon dioxide and oxygen." components: - type: Sprite - sprite: Mobs/Species/Human/organs.rsi - layers: - - state: lung-l - - state: lung-r + state: lungs + - type: Item + size: Small + heldPrefix: lungs - type: Lung - type: Metabolizer removeEmpty: true diff --git a/Resources/Prototypes/Body/Organs/human.yml b/Resources/Prototypes/Body/Organs/human.yml index c67f4f6cd1..cb1492b8a6 100644 --- a/Resources/Prototypes/Body/Organs/human.yml +++ b/Resources/Prototypes/Body/Organs/human.yml @@ -71,6 +71,9 @@ entries: Burger: Brain Taco: Brain + - type: Item + size: Small + heldPrefix: brain - type: entity id: OrganHumanEyes @@ -82,6 +85,9 @@ layers: - state: eyeball-l - state: eyeball-r + - type: Item + size: Small + heldPrefix: eyeballs - type: entity id: OrganHumanTongue @@ -122,6 +128,9 @@ layers: - state: lung-l - state: lung-r + - type: Item + size: Small + heldPrefix: lungs - type: Lung - type: Metabolizer removeEmpty: true @@ -164,6 +173,9 @@ - id: Medicine - id: Poison - id: Narcotic + - type: Item + size: Small + heldPrefix: heart - type: entity id: OrganHumanStomach @@ -173,6 +185,9 @@ components: - type: Sprite state: stomach + - type: Item + size: Small + heldPrefix: stomach - type: SolutionContainerManager solutions: stomach: @@ -202,6 +217,9 @@ components: - type: Sprite state: liver + - type: Item + size: Small + heldPrefix: liver - type: Metabolizer # The liver metabolizes certain chemicals only, like alcohol. maxReagents: 1 metabolizerTypes: [Human] @@ -219,6 +237,9 @@ layers: - state: kidney-l - state: kidney-r + - type: Item + size: Small + heldPrefix: kidneys # The kidneys just remove anything that doesn't currently have any metabolisms, as a stopgap. - type: Metabolizer maxReagents: 5 diff --git a/Resources/Prototypes/Body/Organs/slime.yml b/Resources/Prototypes/Body/Organs/slime.yml index 3da76c5d4a..ca22d25423 100644 --- a/Resources/Prototypes/Body/Organs/slime.yml +++ b/Resources/Prototypes/Body/Organs/slime.yml @@ -33,6 +33,9 @@ reagents: - ReagentId: Slime Quantity: 10 + - type: Item + size: Small + heldPrefix: brain - type: entity @@ -70,3 +73,6 @@ reagents: - ReagentId: UncookedAnimalProteins Quantity: 5 + - type: Item + size: Small + heldPrefix: lungs diff --git a/Resources/Prototypes/Body/Organs/vox.yml b/Resources/Prototypes/Body/Organs/vox.yml index 1b4d12116f..70e0783271 100644 --- a/Resources/Prototypes/Body/Organs/vox.yml +++ b/Resources/Prototypes/Body/Organs/vox.yml @@ -1,9 +1,15 @@ - type: entity id: OrganVoxLungs parent: OrganHumanLungs + description: "The blue, anaerobic lungs of a vox, they intake nitrogen to breathe. Any form of gaseous oxygen is lethally toxic if breathed in." suffix: "vox" components: + - type: Sprite + sprite: Mobs/Species/Vox/organs.rsi - type: Metabolizer metabolizerTypes: [ Vox ] - type: Lung alert: LowNitrogen + - type: Item + size: Small + heldPrefix: lungs diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 82660f8f13..1cc97c2401 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -261,6 +261,7 @@ id: LockerFillResearchDirectorNoHardsuit table: !type:AllSelector children: + - id: Intellicard - id: BoxEncryptionKeyScience - id: CircuitImprinterMachineCircuitboard - id: ClothingBeltUtilityFilled diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml index fce18024a7..188aaf7641 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml @@ -8,4 +8,5 @@ id: TankDispenserEngineeringInventory startingInventory: PlasmaTankFilled: 10 + NitrogenTankFilled: 10 OxygenTankFilled: 10 diff --git a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml index 9314de9791..46edd7bafe 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml @@ -130,6 +130,12 @@ prefix: fat-extractor-fact- count: 6 +- type: localizedDataset + id: FirebotAd + values: + prefix: advertisement-firebot- + count: 4 + - type: localizedDataset id: GoodCleanFunAds values: diff --git a/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml new file mode 100644 index 0000000000..d3f7dc480c --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml @@ -0,0 +1,764 @@ +- 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: Fiber + fiberColor: fibers-white + - type: DnaSubstanceTrace + - 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, BaseSyndicateContraband ] + 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/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index c90e0c98f5..a58c2a3fdd 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -187,6 +187,9 @@ name: power-cell-slot-component-slot-name-default startingItem: PowerCellSmall disableEject: true + whitelist: + tags: + - PowerCell - type: entity parent: ClothingOuterBase diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index fbaeba6047..4223f2217e 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -204,6 +204,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepSpurs + params: + variation: 0.09 - type: entity parent: ClothingShoesBootsCowboyBrown diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index a4fbe012c5..87a0c06c4a 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -40,6 +40,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClown + params: + variation: 0.17 # for H.O.N.K. construction - type: Tag tags: @@ -59,6 +61,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepSlip + params: + variation: 0.10 - type: Construction graph: BananaClownShoes node: shoes @@ -79,6 +83,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClown + params: + variation: 0.17 - type: PointLight enabled: true radius: 3 @@ -215,6 +221,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepJester + params: + variation: 0.07 - type: entity parent: ClothingShoesClown @@ -274,3 +282,5 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepSkates + params: + variation: 0.08 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 3f735cf98b..6a22da58eb 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -289,6 +289,7 @@ - id: ResearchDisk5000 - id: PetCarrier - id: DrinkMopwataBottleRandom + - id: SpectralLocator - id: LidSalami weight: 0.05 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml index 4dcc97ad31..fdfe759e0a 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml @@ -150,4 +150,10 @@ - PosterLegitPeriodicTable - PosterLegitRenault - PosterLegitNTTGC + - PosterLegitSafetyMothDelam + - PosterLegitSafetyMothEpi + - PosterLegitSafetyMothPiping + - PosterLegitSafetyMothMeth + - PosterLegitSafetyMothHardhat + - PosterLegitSafetyMothSSD chance: 1 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index d4f2ecd30a..e2dd9ac3f3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1407,8 +1407,7 @@ components: # make the player a traitor once its taken - type: AutoTraitor - giveUplink: false - giveObjectives: false + profile: TraitorReinforcement - type: entity id: MobMonkeySyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink @@ -1432,11 +1431,14 @@ - type: Speech speechSounds: Lizard speechVerb: Reptilian + allowedEmotes: ['Thump'] - type: Vocal sounds: Male: MaleReptilian Female: FemaleReptilian Unsexed: MaleReptilian + - type: BodyEmotes + soundsId: ReptilianBodyEmotes - type: TypingIndicator proto: lizard - type: InteractionPopup @@ -1566,8 +1568,7 @@ components: # make the player a traitor once its taken - type: AutoTraitor - giveUplink: false - giveObjectives: false + profile: TraitorReinforcement - type: entity id: MobKoboldSyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 71336d9e63..5adb891445 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -777,6 +777,7 @@ name: ghost-role-information-smile-name description: ghost-role-information-smile-description rules: ghost-role-information-nonantagonist-rules + raffle: null - type: Grammar attributes: proper: true diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index cf964822f1..888011a5b5 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -8,6 +8,7 @@ components: - type: Input context: "ghost" + - type: Spectral - type: MovementSpeedModifier baseWalkSpeed: 6 baseSprintSpeed: 6 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 612e49baec..5883790b66 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -120,8 +120,6 @@ - type: Construction graph: FireBot node: bot - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-mechanical - type: HTN rootTask: task: FirebotCompound @@ -148,12 +146,14 @@ vaporSpread: 90 sprayVelocity: 3.0 - type: UseDelay - delay: 4 + delay: 2 - type: InteractionPopup interactSuccessString: petting-success-firebot interactFailureString: petting-failure-firebot interactSuccessSound: path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: Advertise + pack: FirebotAd - type: entity parent: MobSiliconBase @@ -166,6 +166,8 @@ maxInterval: 12 sound: collection: BikeHorn + params: + variation: 0.125 - type: Sprite sprite: Mobs/Silicon/Bots/honkbot.rsi state: honkbot @@ -210,6 +212,8 @@ interactFailureString: petting-failure-honkbot interactSuccessSound: path: /Audio/Items/bikehorn.ogg + params: + variation: 0.125 - type: entity parent: MobHonkBot @@ -220,6 +224,8 @@ - type: SpamEmitSound sound: collection: CluwneHorn + params: + variation: 0.125 - type: Sprite state: jonkbot - type: Construction @@ -235,6 +241,8 @@ - type: InteractionPopup interactSuccessSound: path: /Audio/Items/brokenbikehorn.ogg + params: + variation: 0.125 - type: Vocal sounds: Unsexed: Cluwne diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 209d4244b9..1c3862e99a 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -1,5 +1,5 @@ - type: entity - parent: [MobObserver, InventoryBase] + parent: [MobObserverBase, InventoryBase] id: AdminObserver name: admin observer categories: [ HideSpawnMenu ] @@ -12,6 +12,7 @@ - CanPilot - BypassInteractionRangeChecks - BypassDropChecks + - NoConsoleSound - type: Input context: "aghost" - type: Ghost diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 4a7a48a0d5..7fc8bf7d6c 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -31,8 +31,7 @@ components: # make the player a traitor once its taken - type: AutoTraitor - giveUplink: false - giveObjectives: false + profile: TraitorReinforcement - type: entity parent: MobHumanSyndicateAgent diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index c02629c4d6..397061defe 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -28,11 +28,13 @@ layer: - GhostImpassable +# shared parent between aghosts, replay spectators and normal observers - type: entity parent: - Incorporeal - BaseMob - id: MobObserver + id: MobObserverBase + abstract: true name: observer description: Boo! categories: [ HideSpawnMenu ] @@ -61,6 +63,13 @@ tags: - BypassInteractionRangeChecks +# proto for player ghosts specifically +- type: entity + parent: MobObserverBase + id: MobObserver + components: + - type: Spectral + - type: entity id: ActionGhostBoo name: Boo! diff --git a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml index ffbc46e94c..8a01de4080 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml @@ -1,5 +1,5 @@ - type: entity - parent: MobObserver + parent: MobObserverBase id: ReplayObserver categories: [ HideSpawnMenu ] save: false diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 15878a4017..9f7e206c24 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -71,6 +71,26 @@ title: comms-console-announcement-title-station-ai color: "#2ed2fd" +- type: entity + id: AiHeldIntellicard + description: Components added / removed from an entity that gets inserted into an Intellicard. + categories: [ HideSpawnMenu ] + components: + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Binary + - Common + - type: ActionGrant + actions: + - ActionAIViewLaws + - type: UserInterface + interfaces: + enum.SiliconLawsUiKey.Key: + type: SiliconLawBoundUserInterface # Ai - type: entity @@ -82,7 +102,8 @@ - type: StationAiHolder slot: name: station-ai-mind-slot - locked: true + locked: false + disableEject: true whitelist: tags: - StationAi @@ -239,6 +260,7 @@ state: std_mod - type: SiliconLawProvider laws: AntimovLawset + lawUploadSound: /Audio/Ambience/Antag/silicon_lawboard_antimov.ogg - type: entity id: NutimovCircuitBoard @@ -255,13 +277,16 @@ # Items - type: entity id: Intellicard - name: Intellicard + name: intellicard description: A storage device for AIs. parent: - BaseItem - AiHolder suffix: Empty components: + - type: ContainerComp + proto: AiHeldIntellicard + container: station_ai_mind_slot - type: Sprite sprite: Objects/Devices/ai_card.rsi layers: @@ -360,7 +385,6 @@ enum.SiliconLawsUiKey.Key: type: SiliconLawBoundUserInterface - type: ComplexInteraction - - type: DoorRemote - type: Actions - type: Access groups: @@ -373,6 +397,7 @@ tags: - HideContextMenu - StationAi + - NoConsoleSound # Hologram projection that the AI's eye tracks. - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index c023dc1c25..f172f631c1 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -30,6 +30,7 @@ - type: Speech speechSounds: Lizard speechVerb: Reptilian + allowedEmotes: ['Thump'] - type: TypingIndicator proto: lizard - type: Vocal @@ -37,6 +38,8 @@ Male: MaleReptilian Female: FemaleReptilian Unsexed: MaleReptilian + - type: BodyEmotes + soundsId: ReptilianBodyEmotes - type: Damageable damageContainer: Biological damageModifierSet: Scale diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml index 448ef0868d..0b574cdd72 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml @@ -135,6 +135,10 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Cake + - Vegetable - type: entity name: slice of carrot cake @@ -155,6 +159,11 @@ Quantity: 1 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - Cake + - Vegetable + - Slice # Tastes like sweetness, cake, carrot. @@ -168,7 +177,10 @@ state: brain - type: SliceableFood slice: FoodCakeBrainSlice - + - type: Tag + tags: + - Cake + - Meat - type: entity name: slice of brain cake @@ -178,6 +190,11 @@ components: - type: Sprite state: brain-slice + - type: Tag + tags: + - Cake + - Meat + - Slice # Tastes like sweetness, cake, brains. - type: entity @@ -429,6 +446,10 @@ state: slime - type: SliceableFood slice: FoodCakeSlimeSlice + - type: Tag + tags: + - Cake + - Meat - type: entity name: slice of slime cake @@ -438,6 +459,11 @@ components: - type: Sprite state: slime-slice + - type: Tag + tags: + - Cake + - Meat + - Slice # Tastes like sweetness, cake, slime. - type: entity @@ -498,6 +524,10 @@ state: christmas - type: SliceableFood slice: FoodCakeChristmasSlice + - type: Tag + tags: + - Cake + - Fruit - type: entity name: slice of christmas cake @@ -506,6 +536,11 @@ components: - type: Sprite state: christmas-slice + - type: Tag + tags: + - Cake + - Fruit + - Slice # Tastes like sweetness, cake, christmas. - type: entity @@ -634,7 +669,7 @@ Quantity: 20 - ReagentId: Vitamin Quantity: 5 - - ReagentId: Omnizine #This is a really rare cake with healing stuff and we don't have any of its chems yet + - ReagentId: PolypyryliumOligomers Quantity: 15 - type: entity @@ -654,7 +689,7 @@ Quantity: 4 - ReagentId: Vitamin Quantity: 1 - - ReagentId: Omnizine + - ReagentId: PolypyryliumOligomers Quantity: 3 # Tastes like sweetness, cake, jam. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 000f21db3f..612f7da047 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -525,6 +525,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: snake - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index 1240fa3d8f..861caddd06 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -64,6 +64,8 @@ orGroup: GiftPool - id: PlushieLizard #Weh! orGroup: GiftPool + - id: PlushieRainbowLizard + orGroup: GiftPool - id: PlushieNar orGroup: GiftPool - id: PlushieCarp diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml index a6eaa128d6..7ad65e52b2 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml @@ -54,6 +54,7 @@ instrumentList: "Aah": {52: 0} "Ooh": {53: 0} + "Kweh": {4: 1} - type: Sprite sprite: Objects/Fun/Instruments/microphone.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml b/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml new file mode 100644 index 0000000000..930b9c4926 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml @@ -0,0 +1,58 @@ +- type: entity + id: SpectralLocatorUnpowered + parent: BaseItem + name: spectral locator + description: Appears to be a modified anomaly locator. Seems very old. + suffix: Unpowered + components: + - type: Sprite + sprite: Objects/Fun/spectrallocator.rsi + layers: + - state: icon + - state: screen + shader: unshaded + visible: false + map: ["enum.ToggleVisuals.Layer"] + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: { visible: true } + False: { visible: false } + - type: ItemToggle + - type: ProximityBeeper + - type: ProximityDetector + range: 12 + criteria: + components: + - Spectral # reacts to AI eye, intentional + - type: Beeper + isMuted: true + minBeepInterval: 0.25 + maxBeepInterval: 0.5 + beepSound: + path: "/Audio/Items/locator_beep.ogg" + params: + maxDistance: 1 + volume: -8 + +- type: entity + id: SpectralLocator + parent: [ SpectralLocatorUnpowered, PowerCellSlotSmallItem ] + suffix: Powered + components: + - type: PowerCellDraw + drawRate: 1 + useRate: 0 + - type: ToggleCellDraw + +- type: entity + id: SpectralLocatorEmpty + parent: SpectralLocator + suffix: Empty + components: + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index a5105fac5f..4993614964 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -344,6 +344,23 @@ - type: Speech speechVerb: Reptilian # for pais (In the secret stash) +- type: entity + parent: PlushieLizard + id: PlushieRainbowLizard #Weh but gay + description: An adorable stuffed toy that resembles a lizardperson of every color. You just might trip while staring at it... + name: rainbow lizard plushie + components: + - type: PointLight + radius: 1.5 + energy: 2 + - type: RgbLightController + layers: [ 0 ] + - type: Clothing + clothingVisuals: + head: + - state: lizard-equipped-HELMET + shader: unshaded + - type: entity parent: PlushieLizard id: PlushieLizardMirrored diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 1fbde27e71..4c4e44c28c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -167,6 +167,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClown + params: + variation: 0.17 - type: Mech baseState: honker openState: honker-open diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml index 9b6da25eb7..5b0c97dc83 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml @@ -68,6 +68,10 @@ components: - type: Sharp butcherDelayModifier: 1.5 # Butchering with a scalpel, regardless of the type, will take 50% longer + - type: Tool + qualities: + - Slicing + speedModifier: 0.66 # pretend the sixes go on forever :) - type: Utensil types: - Knife diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 17775b7e25..0ac1171c5d 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -10,6 +10,8 @@ - type: Sprite sprite: Objects/Specific/Robotics/borgmodule.rsi - type: BorgModule + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: no-action } - type: StaticPrice price: 100 - type: Tag @@ -35,7 +37,7 @@ description: Select this module, enabling you to use the tools it provides. components: - type: InstantAction - itemIconStyle: BigItem + itemIconStyle: BigAction useDelay: 0.5 event: !type:BorgModuleActionSelectedEvent @@ -119,6 +121,8 @@ - CableHVStackLingering10 - Wirecutter - trayScanner + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: wire-module } - type: entity id: BorgModuleFireExtinguisher @@ -132,6 +136,8 @@ - type: ItemBorgModule items: - FireExtinguisher + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: extinguisher-module } - type: entity id: BorgModuleGPS @@ -147,6 +153,8 @@ - HandheldGPSBasic - HandHeldMassScannerBorg - HandheldStationMapUnpowered + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: gps-module } - type: entity id: BorgModuleRadiationDetection @@ -160,6 +168,8 @@ - type: ItemBorgModule items: - GeigerCounter + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: geiger-module } - type: entity id: BorgModuleTool @@ -178,6 +188,8 @@ - Wirecutter - Multitool - WelderIndustrial + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: tool-module } # cargo modules - type: entity @@ -192,6 +204,8 @@ - type: ItemBorgModule items: - AppraisalTool + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: appraisal-module } - type: entity id: BorgModuleMining @@ -210,6 +224,8 @@ - OreBag - Crowbar - RadioHandheld + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: mining-module } - type: entity id: BorgModuleGrapplingGun @@ -224,6 +240,8 @@ items: - WeaponGrapplingGun - HandheldGPSBasic + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: grappling-module } # engineering modules - type: entity @@ -244,6 +262,8 @@ - RemoteSignaller - GasAnalyzer - GeigerCounter + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-tools-module } - type: entity id: BorgModuleConstruction @@ -260,6 +280,8 @@ - SheetGlassLingering0 - PartRodMetalLingering0 - FloorTileItemSteelLingering0 + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: construction-module } - type: entity id: BorgModuleRCD @@ -273,6 +295,8 @@ - type: ItemBorgModule items: - RCDRecharging + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: rcd-module } # janitorial modules (this gets its own unique things because janis are epic) - type: entity @@ -289,6 +313,8 @@ - LightReplacer - Crowbar - Screwdriver + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: light-replacer-module } - type: entity id: BorgModuleCleaning @@ -304,6 +330,8 @@ - MopItem - Bucket - TrashBag + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: cleaning-module } - type: entity id: BorgModuleAdvancedCleaning @@ -321,6 +349,8 @@ - SprayBottleSpaceCleaner - Dropper - TrashBag + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-cleaning-module } # medical modules - type: entity @@ -336,6 +366,8 @@ items: - HandheldHealthAnalyzerUnpowered - ClothingNeckStethoscope + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: diagnosis-module } - type: entity id: BorgModuleTreatment @@ -354,6 +386,8 @@ - Gauze10Lingering - Bloodpack10Lingering - Syringe + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: treatment-module } - type: entity id: BorgModuleDefibrillator @@ -367,6 +401,8 @@ - type: ItemBorgModule items: - DefibrillatorOneHandedUnpowered + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: defib-module } - type: entity id: BorgModuleAdvancedTreatment @@ -384,6 +420,8 @@ - Beaker - BorgDropper - BorgHypo + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-diagnosis-module } # science modules # todo: if science ever gets their own custom robot, add more "sci" modules. @@ -399,6 +437,8 @@ - type: ItemBorgModule items: - NodeScanner + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: node-scanner-module } - type: entity id: BorgModuleAnomaly @@ -416,6 +456,8 @@ - AnomalyLocatorWideUnpowered - RemoteSignaller - Multitool + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: anomaly-module } # service modules - type: entity @@ -435,6 +477,8 @@ - Lighter - DrinkShaker - BorgDropper + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: service-module } - type: entity id: BorgModuleMusique @@ -450,6 +494,8 @@ - SynthesizerInstrument - ElectricGuitarInstrument - SaxophoneInstrument + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: musical-module } - type: entity id: BorgModuleGardening @@ -466,6 +512,8 @@ - HydroponicsToolSpade - HydroponicsToolClippers - Bucket + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: gardening-module } - type: entity id: BorgModuleHarvesting @@ -481,6 +529,8 @@ - HydroponicsToolScythe - HydroponicsToolHatchet - PlantBag + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: harvesting-module } - type: entity id: BorgModuleClowning @@ -496,6 +546,8 @@ - BikeHorn - ClownRecorder - BikeHornInstrument + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: clowning-module } #syndicate modules - type: entity @@ -511,6 +563,8 @@ items: - WeaponPistolEchis - EnergyDaggerLoud + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-weapon-module } - type: entity id: BorgModuleOperative @@ -527,6 +581,8 @@ - Crowbar - Emag - PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-operative-module } - type: entity id: BorgModuleEsword @@ -542,6 +598,8 @@ items: - CyborgEnergySwordDouble - PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-esword-module } - type: entity id: BorgModuleL6C @@ -557,6 +615,8 @@ items: - WeaponLightMachineGunL6C - PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-l6c-module } - type: entity id: BorgModuleMartyr @@ -571,3 +631,5 @@ - type: ItemBorgModule items: - SelfDestructSeq + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-martyr-module } diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml index 5155e70cca..33eabbb60b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml @@ -49,6 +49,10 @@ guides: - Cyborgs - Robotics + - type: ChangeVoiceInContainer + whitelist: + components: + - SecretStash - type: entity parent: MMI @@ -127,3 +131,7 @@ guides: - Cyborgs - Robotics + - type: ChangeVoiceInContainer + whitelist: + components: + - SecretStash diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index f600abc014..924a1983fa 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -388,6 +388,66 @@ - Syringe - Trash +- type: entity + name: mini syringe + parent: Syringe + description: A regular syringe, reshaped to fit inside of a gun. + id: MiniSyringe + components: + - type: Sprite + sprite: Objects/Specific/Chemistry/syringe.rsi + layers: + - state: minisyringe1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - state: syringeproj + - type: SolutionContainerVisuals + maxFillLevels: 3 + fillBaseName: minisyringe + inHandsMaxFillLevels: 3 + inHandsFillBaseName: -fill- + - type: EmbeddableProjectile + offset: "-0.1,0" + minimumSpeed: 3 + removalTime: 0.25 + embedOnThrow: false + - type: SolutionInjectWhileEmbedded + transferAmount: 1 + solution: injector + updateInterval: 2 + - type: SolutionInjectOnEmbed + transferAmount: 2 + solution: injector + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.2 + density: 5 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.3,0.1,0.3" + hard: false + mask: + - Impassable + - BulletImpassable + - type: Projectile + deleteOnCollide: false + onlyCollideWhenShot: true + damage: + types: + Piercing: 5 + - type: Tag + tags: + - Syringe + - Trash + - SyringeGunAmmo + - type: entity parent: BaseSyringe id: PrefilledSyringe diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml index 28157ef345..8fe03f3c6e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -41,7 +41,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml index 98ad35b70d..3af2b7affb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -41,7 +41,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: mag10 - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -61,7 +61,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml index d5fb4360a8..bcd56c1d64 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -41,7 +41,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml index 018d812e3f..6ccf0a1e2a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml @@ -19,7 +19,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml index fbd2044690..e081d574d7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 3 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml index 7a5f5d27ca..98e063e297 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml @@ -19,7 +19,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -40,7 +40,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index 1d18c2b050..63a7acd257 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml @@ -103,6 +103,43 @@ containers: storagebase: !type:Container ents: [] + +- type: entity + name: syringe gun + parent: BaseStorageItem + id: LauncherSyringe + description: Load full of poisoned syringes for optimal fun. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Cannons/syringe_gun.rsi + layers: + - state: syringe_gun + - type: Storage + maxItemSize: Normal + grid: + - 0,0,2,0 + whitelist: + tags: + - SyringeGunAmmo + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/syringe_gun.ogg + soundEmpty: + path: /Audio/Weapons/Guns/Empty/empty.ogg + clumsyProof: true + - type: ContainerAmmoProvider + container: storagebase + - type: Item + size: Normal + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] # shoots bullets instead of throwing them, no other changes - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index bbff3cb43e..a4cb78e67b 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -115,6 +115,7 @@ color: Red enabled: false castShadows: false + - type: NavMapDoor - type: entity id: Firelock diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index ee330b1f79..d7f0297101 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -72,6 +72,59 @@ rewardMinAmount: 0 rewardMaxAmount: 0 possibleRewards: + - Basketball + - BalloonNT + - BalloonCorgi + - BoxDonkSoftBox + - BoxCartridgeCap + - BeachBall + - CandyBucket + - CrayonBox + - ClothingHeadHatCowboyRed + - FoamCrossbow + - FoamBlade + - FoamCutlass + - Football + - GlowstickBase #green + - GlowstickBlue + - GlowstickYellow + - GlowstickPurple + - GlowstickRed + - HarmonicaInstrument + - OcarinaInstrument + - RecorderInstrument + - GunpetInstrument + - BirdToyInstrument + - MysteryFigureBox + - PlushieHampter + - PlushieLizard + - PlushieRainbowLizard + - PlushieAtmosian + - PlushieSpaceLizard + - PlushieNuke + - PlushieCarp + - PlushieMagicarp + - PlushieHolocarp + - PlushieRainbowCarp + - PlushieRatvar + - PlushieNar + - PlushieSnake + - PlushieArachind + - PlushieMoth + - PlushieHampter + - PlushiePenguin + - PlushieHuman + - PlushieRouny + - PlushieBee + - PlushieSlime + - PlushieGhost + - PlushieDiona + - PlushieSharkBlue + - PlushieVox + - PlushieXeno + - PlasticBanana + - RevolverCapGun + - SnapPopBox - ToyMouse - ToyAi - ToyNuke @@ -91,44 +144,12 @@ - ToySeraph - ToyDurand - ToySkeleton - - FoamCrossbow - - RevolverCapGun - - PlushieHampter - - PlushieLizard - - PlushieAtmosian - - PlushieSpaceLizard - - PlushieNuke - - PlushieCarp - - PlushieMagicarp - - PlushieHolocarp - - PlushieRainbowCarp - - PlushieRatvar - - PlushieNar - - PlushieSnake - - PlushieArachind - - Basketball - - Football - - PlushieRouny - - PlushieBee - - PlushieSlime - - BalloonNT - - BalloonCorgi - ToySword - - CrayonBox - - BoxDonkSoftBox - - BoxCartridgeCap - - HarmonicaInstrument - - OcarinaInstrument - - RecorderInstrument - - GunpetInstrument - - BirdToyInstrument - - PlushieXeno - - BeachBall - - PlushieMoth - - PlushieHampter - - PlushiePenguin - - PlushieHuman - - ClothingHeadHatCowboyRed + - ToyAmongPequeno + - ToyRubberDuck + - ToyHammer + - WeaponWaterPistol + - WhoopieCushion - Whistle - type: WiresPanel - type: Wires diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index 9baca8b4b6..d79348bfa6 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -60,6 +60,11 @@ collection: Keyboard params: volume: -1 + variation: 0.10 + pitch: 1.10 # low pitch keyboard sounds feel kinda weird + blacklist: + tags: + - NoConsoleSound - type: ContainerContainer containers: board: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index 070e19cdbe..402c408ed8 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -34,6 +34,7 @@ interfaces: enum.FaxUiKey.Key: type: FaxBoundUi + - type: StationAiWhitelist - type: ApcPowerReceiver powerLoad: 250 - type: Faxecute diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 846441cb39..a8e4d0f43e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -199,11 +199,9 @@ - WetFloorSign - ClothingHeadHatCone - FreezerElectronics - - Flare - type: EmagLatheRecipes emagStaticRecipes: - BoxLethalshot - - BoxShotgunFlare - BoxShotgunSlug - CombatKnife - MagazineBoxLightRifle @@ -733,7 +731,6 @@ runningState: icon staticRecipes: - BoxLethalshot - - BoxShotgunFlare - BoxShotgunPractice - BoxShotgunSlug - ClothingEyesHudSecurity @@ -856,7 +853,6 @@ runningState: icon staticRecipes: - BoxLethalshot - - BoxShotgunFlare - BoxShotgunSlug - BoxShellTranquilizer - MagazineBoxLightRifle @@ -1176,8 +1172,6 @@ - type: Machine board: BiogeneratorMachineCircuitboard - type: MaterialStorage - insertOnInteract: false - canEjectStoredMaterials: false - type: ProduceMaterialExtractor - type: ItemSlots slots: diff --git a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml index 39ab6a3276..72d6b28efa 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml @@ -86,7 +86,7 @@ - type: GenericVisualizer visuals: enum.ConveyorVisuals.State: - enum.RecyclerVisualLayers.Main: + enum.ConveyorState.Off: Forward: { state: grinder-b1 } Reverse: { state: grinder-b1 } Off: { state: grinder-b0 } diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index 7c0537dec6..abf6931c5e 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -91,7 +91,6 @@ type: ApcBoundUserInterface - type: ActivatableUI inHandsOnly: false - singleUser: true key: enum.ApcUiKey.Key - type: Construction graph: APC diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml index 93124b377d..e9b976403c 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml @@ -1060,6 +1060,16 @@ - 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 + + #maps - type: entity diff --git a/Resources/Prototypes/Entities/Structures/hydro_tray.yml b/Resources/Prototypes/Entities/Structures/hydro_tray.yml index 7224c154f9..b1cbcc8b86 100644 --- a/Resources/Prototypes/Entities/Structures/hydro_tray.yml +++ b/Resources/Prototypes/Entities/Structures/hydro_tray.yml @@ -67,6 +67,11 @@ False: { visible: false } - type: PlantHolder drawWarnings: true + wateringSound: + path: /Audio/Effects/Fluids/slosh.ogg + params: + volume: -6 + variation: 0.20 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/categories.yml b/Resources/Prototypes/Entities/categories.yml index bc4dd104de..dffc6b6aaf 100644 --- a/Resources/Prototypes/Entities/categories.yml +++ b/Resources/Prototypes/Entities/categories.yml @@ -11,4 +11,14 @@ - type: entityCategory id: Objectives name: entity-category-name-objectives - hideSpawnMenu: true \ No newline at end of file + hideSpawnMenu: true + +- type: entityCategory + id: Roles + name: entity-category-name-roles + hideSpawnMenu: true + +# markers, atmos fixing, etc +- type: entityCategory + id: Mapping + name: entity-category-name-mapping diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index e5e1192fc6..08218acced 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -35,6 +35,7 @@ - id: RevenantSpawn - id: SleeperAgents - id: ZombieOutbreak + - id: LoneOpsSpawn - type: entity id: BaseStationEvent @@ -451,7 +452,7 @@ duration: 1 - type: RuleGrids - type: LoadMapRule - preloadedGrid: ShuttleStriker + mapPath: /Maps/Shuttles/ShuttleEvent/striker.yml - type: NukeopsRule roundEndBehavior: Nothing - type: AntagSelection diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 46d4366f68..cec5c9ee09 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -189,6 +189,15 @@ mindRoles: - MindRoleTraitor +- type: entity + id: TraitorReinforcement + parent: Traitor + components: + - type: TraitorRule + giveUplink: false + giveCodewords: false # It would actually give them a different set of codewords than the regular traitors, anyway + giveBriefing: false + - type: entity id: Revolutionary parent: BaseGameRule diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index afbd552af3..f3391333b5 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -20,7 +20,6 @@ - id: UnknownShuttleMeatZone - id: UnknownShuttleMicroshuttle - id: UnknownShuttleSpacebus - - id: UnknownShuttleInstigator - type: entityTable id: UnknownShuttlesFreelanceTable @@ -32,9 +31,9 @@ id: UnknownShuttlesHostileTable table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp children: - - id: LoneOpsSpawn + - id: UnknownShuttleInstigator -# Shuttle Game Rules +# Shuttle Game Rules - type: entity abstract: true diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml b/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml index b7dae89fda..1ff3f1533e 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml @@ -41,4 +41,4 @@ - !type:GroupLoadoutEffect proto: JensenTimer equipment: - eyes: ClothingEyesGlassesJensen + eyes: ClothingEyesGlassesJensen \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index 14c1174a7d..78b5f0bc9e 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -155,3 +155,193 @@ storage: back: - ClothingNeckGoldAutismPin + +# Towels +- type: loadout + id: TowelColorWhite + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 36000 # 10hr + storage: + back: + - TowelColorWhite + +- type: loadout + id: TowelColorSilver + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 1800000 # 500hr + storage: + back: + - TowelColorSilver + +- type: loadout + id: TowelColorGold + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 3600000 # 1000hr + storage: + back: + - TowelColorGold + +- type: loadout + id: TowelColorLightBrown + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Cargo + time: 360000 # 100hr + storage: + back: + - TowelColorLightBrown + +- type: loadout + id: TowelColorGreen + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Civilian + time: 360000 # 100hr + storage: + back: + - TowelColorGreen + +- type: loadout + id: TowelColorDarkBlue + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Command + time: 360000 # 100hr + storage: + back: + - TowelColorDarkBlue + +- type: loadout + id: TowelColorOrange + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Engineering + time: 360000 # 100hr + storage: + back: + - TowelColorOrange + +- type: loadout + id: TowelColorLightBlue + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Medical + time: 360000 # 100hr + storage: + back: + - TowelColorLightBlue + +- type: loadout + id: TowelColorPurple + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Science + time: 360000 # 100hr + storage: + back: + - TowelColorPurple + +- type: loadout + id: TowelColorRed + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Security + time: 360000 # 100hr + storage: + back: + - TowelColorRed + +- type: loadout + id: TowelColorGray + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobPassenger + time: 360000 # 100hr + storage: + back: + - TowelColorGray + +- type: loadout + id: TowelColorBlack + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobChaplain + time: 360000 # 100hr + storage: + back: + - TowelColorBlack + +- type: loadout + id: TowelColorDarkGreen + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobLibrarian + time: 360000 # 100hr + storage: + back: + - TowelColorDarkGreen + +- type: loadout + id: TowelColorMaroon + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobLawyer + time: 360000 # 100hr + storage: + back: + - TowelColorMaroon + +- type: loadout + id: TowelColorYellow + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobClown + time: 360000 # 100hr + storage: + back: + - TowelColorYellow + +- type: loadout + id: TowelColorMime + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobMime + time: 360000 # 100hr + storage: + back: + - TowelColorMime \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 069dae3ae1..13c675000e 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -28,6 +28,23 @@ - ClothingNeckTransPin - ClothingNeckAutismPin - ClothingNeckGoldAutismPin + - TowelColorBlack + - TowelColorDarkBlue + - TowelColorDarkGreen + - TowelColorGold + - TowelColorGray + - TowelColorGreen + - TowelColorLightBlue + - TowelColorLightBrown + - TowelColorMaroon + - TowelColorMime + - TowelColorOrange + - TowelColorPurple + - TowelColorRed + - TowelColorSilver + - TowelColorLightBlue + - TowelColorWhite + - TowelColorYellow - type: loadoutGroup id: Glasses diff --git a/Resources/Prototypes/NPCs/firebot.yml b/Resources/Prototypes/NPCs/firebot.yml index acea6498bd..2da9da50d2 100644 --- a/Resources/Prototypes/NPCs/firebot.yml +++ b/Resources/Prototypes/NPCs/firebot.yml @@ -29,6 +29,18 @@ pathfindKey: TargetPathfind rangeKey: InteractRange + - !type:HTNPrimitiveTask + operator: !type:SetFloatOperator + targetKey: WaitTime + amount: 1 + + - !type:HTNPrimitiveTask + operator: !type:WaitOperator + key: WaitTime + preconditions: + - !type:KeyExistsPrecondition + key: WaitTime + - !type:HTNPrimitiveTask preconditions: - !type:TargetInRangePrecondition diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index 8e73eb1395..3f2daa98c9 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -321,6 +321,9 @@ - !type:GenericStatusEffect key: Muted component: Muted + type: Add + time: 10 + refresh: false - type: reagent id: NorepinephricAcid diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 9bbd07848a..2353099df5 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -768,6 +768,20 @@ products: NuclearCola: 5 +- type: reaction + id: NuclearColaBreakdown + source: true + requiredMixerCategories: + - Centrifuge + reactants: + NuclearCola: + amount: 10 # assuming we loose all o2 released as gas in the centrifugal process + products: + Ipecac: 2 + Water: 2 + Sugar: 2 + Uranium: 1 + - type: reaction id: Patron requiredMixerCategories: diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 4ea86573ae..fa1014e990 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -19,6 +19,7 @@ weight: 10 startingGear: QuartermasterGear icon: "JobIconQuarterMaster" + requireAdminNotify: true supervisors: job-supervisors-captain canBeAntag: false access: @@ -26,6 +27,7 @@ - Salvage - Quartermaster - Maintenance + - External - Command - Brig - Cryogenics diff --git a/Resources/Prototypes/Roles/Jobs/Science/borg.yml b/Resources/Prototypes/Roles/Jobs/Science/borg.yml index fbdeab62a3..691bd4f046 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/borg.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/borg.yml @@ -8,7 +8,7 @@ requirements: - !type:RoleTimeRequirement role: JobBorg - time: 18000 # 5 hrs + time: 54000 # 15 hrs canBeAntag: false icon: JobIconStationAi supervisors: job-supervisors-rd @@ -23,7 +23,7 @@ playTimeTracker: JobBorg requirements: - !type:OverallPlaytimeRequirement - time: 216000 # 60 hrs + time: 144000 # 40 hrs canBeAntag: false icon: JobIconBorg supervisors: job-supervisors-rd diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index a5269a73da..1703e0c698 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -1,8 +1,3 @@ -- type: preloadedGrid - id: ShuttleStriker - path: /Maps/Shuttles/ShuttleEvent/striker.yml - copies: 2 - - type: preloadedGrid id: ShuttleCargoLost path: /Maps/Shuttles/ShuttleEvent/lost_cargo.yml diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 8e1f50df39..5eda800244 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -424,6 +424,22 @@ path: /Audio/Voice/Diona/diona_salute.ogg params: volume: -5 + +- type: emoteSounds + id: ReptilianBodyEmotes + sounds: + Thump: + path: /Audio/Voice/Reptilian/reptilian_tailthump.ogg + params: + variation: 0.125 + Clap: + collection: Claps + Snap: + collection: Snaps + params: + volume: -6 + Salute: + collection: Salutes # mobs - type: emoteSounds diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index f503e87d3f..2219221be4 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -312,6 +312,31 @@ - щёлкнула пальцами # CP14-RU-Localization-End +- type: emote + id: Thump + name: chat-emote-name-thump + category: Hands + available: false + icon: Interface/Emotes/tailslap.png + whitelist: + components: + - Hands + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-thump"] + chatTriggers: + - thump + - thumps + - thumping + - thumped + - thump tail + - thumps tail + - thumps their tail + - thumps her tail + - thumps his tail + - thumps its tail + - type: emote id: Salute name: chat-emote-name-salute diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 4f9d0eb3f8..8962da5790 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -987,6 +987,9 @@ - type: Tag id: NoBlockAnchoring +- type: Tag + id: NoConsoleSound + - type: Tag id: NozzleBackTank @@ -1297,6 +1300,9 @@ - type: Tag id: Syringe +- type: Tag + id: SyringeGunAmmo + - type: Tag id: Spellbook diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml index 3e48200e88..1c7e74f444 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml @@ -18,12 +18,17 @@ By pressing [color=yellow][bold][keybind="OpenCharacterMenu"][/bold][/color], you'll see your personal uplink code. [bold]Setting your PDA's ringtone as this code will open the uplink.[/bold] Pressing [color=yellow][bold][keybind="OpenCharacterMenu"][/bold][/color] also lets you view your objectives and the codewords. + If you do not have a PDA when you are activated, an [color=cyan]uplink implant[/color] is provided [bold]for the full [color=red]TC[/color] price of the implant.[/bold] + It can be accessed from your hotbar. + - [bold]Make sure to close your uplink to prevent anyone else from seeing it.[/bold] You don't want [color=#cb0000]Security[/color] to get their hands on this premium selection of contraband! + [bold]Make sure to close your PDA uplink to prevent anyone else from seeing it.[/bold] You don't want [color=#cb0000]Security[/color] to get their hands on this premium selection of contraband! + + Implanted uplinks are not normally accessible to other people, so they do not have any security measures. They can, however, be removed from you with an empty implanter. diff --git a/Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png index 10dab5101f..70d2f5adc4 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json index 7bd2e3e22a..e953fa53d5 100644 --- a/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/warden.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/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, texture edited by TeaMaki (On github TeaMakiNL)", "size": { "x": 32, "y": 32 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/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png index c0258cf199..a7646e1511 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png index 3263c54ec9..63a2b78ddf 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png index 5f662e0280..5b18b310ee 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png index 94d9ed8605..be8f306df1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png index 560879a0f2..d453655831 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json index bbcef071e2..41d39d9bf4 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.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/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github), modified by KingFroozy (github) for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png index 4cb7704e2c..54312098fb 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png index 93477d07f5..b7877ab176 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png index 06c845ef84..59f190fb99 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png index bdbd3ea488..ff454fb5db 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png index 7822bf686c..bb33c2d6c1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json index 425a857f02..d0a3b5db80 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Borrowed from QM turtleneck at https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi and modified by KingFroozy (github) for space station 14", + "copyright": "Modified from https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi by KingFroozy (github) for space station 14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png index e0881f66bb..b5cda54ed2 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png index e9165f29cc..e935d8977d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png index e2c37a0c2c..e8703104a6 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png index 94d9ed8605..be8f306df1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png index 560879a0f2..d453655831 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json index 1d012747b8..425e6eaae2 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.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/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github), modified by KingFroozy (github) for ss14", "size": { "x": 32, "y": 32 @@ -10,17 +10,10 @@ { "name": "icon" }, - { - "name": "s" - }, { "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "s-equipped-INNERCLOTHING", - "directions": 4 - }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png deleted file mode 100644 index 213562cf97..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png deleted file mode 100644 index 7282eb27f6..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png index 7c9e3cfc92..05cbff092d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png index 171598455f..876758ad1c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png index 50def373e3..6db1c12d98 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png index bdbd3ea488..ff454fb5db 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png index 7822bf686c..bb33c2d6c1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json index f61c82ce0e..b70dde70e4 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Borrowed from QM turtleneck at https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi and modified by KingFroozy (github) for space station 14", + "copyright": "Modified from https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi by KingFroozy (github) for space station 14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-cleaning-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-cleaning-module.png new file mode 100644 index 0000000000..f608aaa0bc Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-cleaning-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-diagnosis-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-diagnosis-module.png new file mode 100644 index 0000000000..df4d53633b Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-diagnosis-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-tools-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-tools-module.png new file mode 100644 index 0000000000..47d0a45033 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-tools-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/anomaly-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/anomaly-module.png new file mode 100644 index 0000000000..2270e2e86f Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/anomaly-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/appraisal-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/appraisal-module.png new file mode 100644 index 0000000000..9f327af063 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/appraisal-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/cleaning-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/cleaning-module.png new file mode 100644 index 0000000000..8caf592553 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/cleaning-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/clowning-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/clowning-module.png new file mode 100644 index 0000000000..bb6c441206 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/clowning-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/construction-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/construction-module.png new file mode 100644 index 0000000000..c77c02f207 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/construction-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/defib-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/defib-module.png new file mode 100644 index 0000000000..4d22bb55d7 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/defib-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/diagnosis-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/diagnosis-module.png new file mode 100644 index 0000000000..80686c3ce4 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/diagnosis-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/extinguisher-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/extinguisher-module.png new file mode 100644 index 0000000000..b74cd09fda Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/extinguisher-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/gardening-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/gardening-module.png new file mode 100644 index 0000000000..d400ba2b99 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/gardening-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/geiger-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/geiger-module.png new file mode 100644 index 0000000000..d962befeac Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/geiger-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/gps-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/gps-module.png new file mode 100644 index 0000000000..67af612968 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/gps-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/grappling-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/grappling-module.png new file mode 100644 index 0000000000..68209e0ada Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/grappling-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/harvesting-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/harvesting-module.png new file mode 100644 index 0000000000..24e1c57f5e Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/harvesting-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/light-replacer-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/light-replacer-module.png new file mode 100644 index 0000000000..7f70d15f24 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/light-replacer-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json index f63bacd07a..dc8a6fcf9c 100644 --- a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json +++ b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json @@ -9,6 +9,99 @@ "states": [ { "name": "state-laws" + }, + { + "name": "no-action" + }, + { + "name":"tool-module" + }, + { + "name":"wire-module" + }, + { + "name":"gps-module" + }, + { + "name":"extinguisher-module" + }, + { + "name":"geiger-module" + }, + { + "name":"rcd-module" + }, + { + "name":"adv-tools-module" + }, + { + "name":"construction-module" + }, + { + "name":"appraisal-module" + }, + { + "name":"grappling-module" + }, + { + "name":"mining-module" + }, + { + "name":"light-replacer-module" + }, + { + "name":"cleaning-module" + }, + { + "name":"adv-cleaning-module" + }, + { + "name":"diagnosis-module" + }, + { + "name":"treatment-module" + }, + { + "name":"adv-diagnosis-module" + }, + { + "name":"defib-module" + }, + { + "name":"node-scanner-module" + }, + { + "name":"anomaly-module" + }, + { + "name":"service-module" + }, + { + "name":"musical-module" + }, + { + "name":"gardening-module" + }, + { + "name":"harvesting-module" + }, + { + "name":"clowning-module" + }, + { + "name":"syndicate-weapon-module" + }, + { + "name":"syndicate-operative-module" + }, + { + "name":"syndicate-esword-module" + }, + { + "name":"syndicate-l6c-module" + }, + { + "name":"syndicate-martyr-module" } ] } diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/mining-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/mining-module.png new file mode 100644 index 0000000000..bfef5bfd04 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/mining-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/musical-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/musical-module.png new file mode 100644 index 0000000000..c611269ddf Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/musical-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/no-action.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/no-action.png new file mode 100644 index 0000000000..4196b8b9f4 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/no-action.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/node-scanner-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/node-scanner-module.png new file mode 100644 index 0000000000..4fa2554ead Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/node-scanner-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/rcd-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/rcd-module.png new file mode 100644 index 0000000000..388c0c6e8f Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/rcd-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/service-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/service-module.png new file mode 100644 index 0000000000..1c114ef314 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/service-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png new file mode 100644 index 0000000000..201149cf18 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-l6c-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-l6c-module.png new file mode 100644 index 0000000000..c06ce96358 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-l6c-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-martyr-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-martyr-module.png new file mode 100644 index 0000000000..771bb75f10 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-martyr-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-operative-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-operative-module.png new file mode 100644 index 0000000000..19642942f9 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-operative-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-weapon-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-weapon-module.png new file mode 100644 index 0000000000..cd1f115e8b Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-weapon-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/tool-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/tool-module.png new file mode 100644 index 0000000000..c465804976 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/tool-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/treatment-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/treatment-module.png new file mode 100644 index 0000000000..988b3de761 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/treatment-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/wire-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/wire-module.png new file mode 100644 index 0000000000..00361aa00f Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/wire-module.png differ diff --git a/Resources/Textures/Interface/Emotes/attributions.yml b/Resources/Textures/Interface/Emotes/attributions.yml index 4cb2faa076..55cb19a9d7 100644 --- a/Resources/Textures/Interface/Emotes/attributions.yml +++ b/Resources/Textures/Interface/Emotes/attributions.yml @@ -120,3 +120,8 @@ license: "CC-BY-SA-3.0" copyright: "Created by Sarahon" source: "https://github.com/Sarahon" + +- files: ["tailslap.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by Sarahon" + source: "https://github.com/Sarahon" diff --git a/Resources/Textures/Interface/Emotes/tailslap.png b/Resources/Textures/Interface/Emotes/tailslap.png new file mode 100644 index 0000000000..75405a67ba Binary files /dev/null and b/Resources/Textures/Interface/Emotes/tailslap.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-left.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-left.png new file mode 100644 index 0000000000..a623e75a28 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-right.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-right.png new file mode 100644 index 0000000000..45649b9261 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-left.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-left.png new file mode 100644 index 0000000000..56698f87e2 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-right.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-right.png new file mode 100644 index 0000000000..c7fb399399 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/meta.json index 6141fd5de8..62d1f04bf0 100644 --- a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PixelTheKermit (github) for SS14", + "copyright": "Made by PixelTheKermit (github) for SS14, inhands by mubururu_ (github)", "size": { "x": 32, "y": 32 @@ -14,7 +14,23 @@ "name": "eyeball-r" }, { - "name": "tongue" + "name": "eyeballs-inhand-left", + "directions": 4 + }, + { + "name": "eyeballs-inhand-right", + "directions": 4 + }, + { + "name": "tongue" + }, + { + "name": "heart-inhand-left", + "directions": 4 + }, + { + "name": "heart-inhand-right", + "directions": 4 }, { "name": "heart-on", @@ -42,6 +58,14 @@ { "name": "stomach" }, + { + "name": "stomach-inhand-left", + "directions": 4 + }, + { + "name": "stomach-inhand-right", + "directions": 4 + }, { "name": "web-gland" } diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-left.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-left.png new file mode 100644 index 0000000000..a346078b4a Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-right.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-right.png new file mode 100644 index 0000000000..001203bdc3 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-left.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-left.png new file mode 100644 index 0000000000..43e0cd4034 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-right.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-right.png new file mode 100644 index 0000000000..df6dded744 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-left.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-left.png new file mode 100644 index 0000000000..5d31e96a37 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-right.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-right.png new file mode 100644 index 0000000000..4830b1e0a6 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs.png new file mode 100644 index 0000000000..77b61c344f Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Diona/organs.rsi/meta.json index 1c1697efc7..de4f8f8dc3 100644 --- a/Resources/Textures/Mobs/Species/Diona/organs.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Diona/organs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/commit/38051f45d3b26bd31f6e292239f43adb36ff01fe", + "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/commit/38051f45d3b26bd31f6e292239f43adb36ff01fe lungs and inhands by mubururu_ (github)", "size": { "x": 32, "y": 32 @@ -10,6 +10,14 @@ { "name": "brain" }, + { + "name": "brain-inhand-left", + "directions": 4 + }, + { + "name": "brain-inhand-right", + "directions": 4 + }, { "name": "ears" }, @@ -19,8 +27,27 @@ { "name": "eyeball-r" }, + { + "name": "lungs" + }, + { + "name": "lungs-inhand-left", + "directions": 4 + }, + { + "name": "lungs-inhand-right", + "directions": 4 + }, { "name": "stomach" + }, + { + "name": "stomach-inhand-left", + "directions": 4 + }, + { + "name": "stomach-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-left.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-left.png new file mode 100644 index 0000000000..e8d5a7c86c Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-right.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-right.png new file mode 100644 index 0000000000..257c0af83a Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-left.png index cf6e4684e9..b4d4d86dd5 100644 Binary files a/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-left.png and b/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-right.png index 978d4f3c5f..2360c07898 100644 Binary files a/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-right.png and b/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-left.png new file mode 100644 index 0000000000..d0187579a3 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-right.png new file mode 100644 index 0000000000..4dfafd118d Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-left.png new file mode 100644 index 0000000000..1d73edaf03 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-right.png new file mode 100644 index 0000000000..3f7ace9b48 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-left.png new file mode 100644 index 0000000000..f8d889b5de Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-right.png new file mode 100644 index 0000000000..9b2e313150 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-left.png new file mode 100644 index 0000000000..d63f9e1ef4 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-right.png new file mode 100644 index 0000000000..69ce8ffd77 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-left.png new file mode 100644 index 0000000000..62b30a5ad5 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-right.png new file mode 100644 index 0000000000..1a5e3a7058 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Human/organs.rsi/meta.json index 354132ea11..a9112535f8 100644 --- a/Resources/Textures/Mobs/Species/Human/organs.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Human/organs.rsi/meta.json @@ -1,80 +1,128 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and cev-eris at https://github.com/tgstation/tgstation/commit/c4b7f3c41b6742aca260fe60cc358a778ba9b8c8 and https://github.com/discordia-space/CEV-Eris/commit/476e374cea95ff5e8b1603c48342bf700e2cd7af", + "copyright": "Taken from tgstation and cev-eris at https://github.com/tgstation/tgstation/commit/c4b7f3c41b6742aca260fe60cc358a778ba9b8c8 and https://github.com/discordia-space/CEV-Eris/commit/476e374cea95ff5e8b1603c48342bf700e2cd7af, inhands by mubururu_ (github)", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "appendix" - }, - { - "name": "appendix-inflamed" - }, - { - "name": "brain" - }, - { - "name": "brain-inhand-left", - "directions": 4 - }, - { - "name": "brain-inhand-right", - "directions": 4 - }, - { - "name": "ears" - }, - { - "name": "eyeball-l" - }, - { - "name": "eyeball-r" - }, - { - "name": "heart-off" - }, - { - "name": "heart-on", - "delays": [ - [ - 0.6, - 0.1, - 0.1 - ] - ] - }, - { - "name": "kidney-l" - }, - { - "name": "kidney-r" - }, - { - "name": "liver" - }, - { - "name": "lung-l" - }, - { - "name": "lung-r" - }, - { - "name": "stomach" - }, - { - "name": "tongue" - }, - { - "name": "muscle" - }, - { - "name": "nerve" - }, - { - "name": "vessel" - } - ] + "states": [ + { + "name": "appendix" + }, + { + "name": "appendix-inflamed" + }, + { + "name": "brain" + }, + { + "name": "brain-inhand-left", + "directions": 4 + }, + { + "name": "brain-inhand-right", + "directions": 4 + }, + { + "name": "ears" + }, + { + "name": "eyeballs-inhand-left", + "directions": 4 + }, + { + "name": "eyeballs-inhand-right", + "directions": 4 + }, + { + "name": "eyeball-l" + }, + { + "name": "eyeball-r" + }, + { + "name": "heart-inhand-left", + "directions": 4 + }, + { + "name": "heart-inhand-right", + "directions": 4 + }, + { + "name": "heart-off" + }, + { + "name": "heart-on", + "delays": [ + [ + 0.6, + 0.1, + 0.1 + ] + ] + }, + { + "name": "kidneys-inhand-left", + "directions": 4 + }, + { + "name": "kidneys-inhand-right", + "directions": 4 + }, + { + "name": "kidney-l" + }, + { + "name": "kidney-r" + }, + { + "name": "liver" + }, + { + "name": "liver-inhand-left", + "directions": 4 + }, + { + "name": "liver-inhand-right", + "directions": 4 + }, + { + "name": "lungs-inhand-left", + "directions": 4 + }, + { + "name": "lungs-inhand-right", + "directions": 4 + }, + { + "name": "lung-l" + }, + { + "name": "lung-r" + }, + { + "name": "stomach" + }, + { + "name": "stomach-inhand-left", + "directions": 4 + }, + { + "name": "stomach-inhand-right", + "directions": 4 + }, + { + "name": "tongue" + }, + { + "name": "muscle" + }, + { + "name": "nerve" + }, + { + "name": "vessel" + } + ] } diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-left.png new file mode 100644 index 0000000000..a346078b4a Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-right.png new file mode 100644 index 0000000000..001203bdc3 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-left.png b/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-left.png index a536818eee..c0c260afce 100644 Binary files a/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-left.png and b/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-right.png b/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-right.png index c7e0adca9a..50f22d7a3f 100644 Binary files a/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-right.png and b/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-left.png b/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-left.png new file mode 100644 index 0000000000..0354025ce9 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-right.png b/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-right.png new file mode 100644 index 0000000000..a3c6ba485e Binary files /dev/null and b/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Slime/organs.rsi/meta.json index cacfcdc40b..451ab138df 100644 --- a/Resources/Textures/Mobs/Species/Slime/organs.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Slime/organs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by Nimfar11 (Github) for Space Station 14", + "copyright": "Sprited by Nimfar11 (Github) for Space Station 14, inhands by mubururu_ (github)", "size": { "x": 32, "y": 32 @@ -15,8 +15,16 @@ "directions": 4 }, { - "name": "brain-inhand-right", - "directions": 4 + "name": "brain-inhand-right", + "directions": 4 + }, + { + "name": "lungs-inhand-left", + "directions": 4 + }, + { + "name": "lungs-inhand-right", + "directions": 4 }, { "name": "lung-l-slime" diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-l.png b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-l.png new file mode 100644 index 0000000000..5ae28e9594 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-l.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-r.png b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-r.png new file mode 100644 index 0000000000..8110a03b47 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-r.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-left.png b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-left.png new file mode 100644 index 0000000000..4b9489e838 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-right.png b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-right.png new file mode 100644 index 0000000000..b1fd54694e Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Vox/organs.rsi/meta.json new file mode 100644 index 0000000000..1d7b44d6ed --- /dev/null +++ b/Resources/Textures/Mobs/Species/Vox/organs.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by mubururu_ (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "lungs-inhand-left", + "directions": 4 + }, + { + "name": "lungs-inhand-right", + "directions": 4 + }, + { + "name": "lung-l" + }, + { + "name": "lung-r" + } + ] +} diff --git a/Resources/Textures/Objects/Devices/ai_card.rsi/base.png b/Resources/Textures/Objects/Devices/ai_card.rsi/base.png index 244183c078..535f5a48e9 100644 Binary files a/Resources/Textures/Objects/Devices/ai_card.rsi/base.png and b/Resources/Textures/Objects/Devices/ai_card.rsi/base.png differ diff --git a/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png b/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png index 7e61f368de..a62b9263d5 100644 Binary files a/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png and b/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png differ diff --git a/Resources/Textures/Objects/Devices/ai_card.rsi/full.png b/Resources/Textures/Objects/Devices/ai_card.rsi/full.png index 59131c8c0a..69a1825d91 100644 Binary files a/Resources/Textures/Objects/Devices/ai_card.rsi/full.png and b/Resources/Textures/Objects/Devices/ai_card.rsi/full.png differ diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/icon.png b/Resources/Textures/Objects/Fun/spectrallocator.rsi/icon.png new file mode 100644 index 0000000000..b18dfd1c29 Binary files /dev/null and b/Resources/Textures/Objects/Fun/spectrallocator.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-left.png new file mode 100644 index 0000000000..cb25c6e3cf Binary files /dev/null and b/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-right.png new file mode 100644 index 0000000000..7c34512cb6 Binary files /dev/null and b/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/meta.json b/Resources/Textures/Objects/Fun/spectrallocator.rsi/meta.json new file mode 100644 index 0000000000..1556cd4eb9 --- /dev/null +++ b/Resources/Textures/Objects/Fun/spectrallocator.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Originally created by EmoGarbage404 (github) for Space Station 14, modified by Ilya246 (github) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "screen", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/screen.png b/Resources/Textures/Objects/Fun/spectrallocator.rsi/screen.png new file mode 100644 index 0000000000..eb4ab6bbbe Binary files /dev/null and b/Resources/Textures/Objects/Fun/spectrallocator.rsi/screen.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json index 1495eccd7a..0c29f3e3fb 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json @@ -57,6 +57,15 @@ { "name": "syringe2" }, + { + "name": "minisyringe1" + }, + { + "name": "minisyringe2" + }, + { + "name": "minisyringe3" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe1.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe1.png new file mode 100644 index 0000000000..66c49a744c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe1.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe2.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe2.png new file mode 100644 index 0000000000..6f5d566354 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe2.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe3.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe3.png new file mode 100644 index 0000000000..71d3bad044 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe3.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png index 7819a48c66..5faf746ae3 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png index 877a76785e..e80c4fa942 100644 Binary files a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-left.png new file mode 100644 index 0000000000..19d43a58d2 Binary files /dev/null and b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-right.png new file mode 100644 index 0000000000..99d7bc3730 Binary files /dev/null and b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json index 07cec4822e..3a6e8e9d8e 100644 --- a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json @@ -1,18 +1,26 @@ { - "copyright" : "Taken from https://github.com/tgstation/tgstation/blob/master/icons/obj/device.dmi state export_scanner at commit 7544e865d0771d9bd917461e9da16d301fe40fc3.", + "copyright" : "Taken from https://github.com/tgstation/tgstation/blob/master/icons/obj/device.dmi state export_scanner at commit 7544e865d0771d9bd917461e9da16d301fe40fc3. In-hand sprites made by obscenelytinyshark for use in SS14.", "license" : "CC-BY-SA-3.0", "size" : { "x" : 32, "y" : 32 }, - "states" : [ - { - "name" : "icon" - }, - { - "name": "equipped-BELT", - "directions": 4 - } - ], + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ], "version" : 1 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png index 1784e7f623..6a141b7efb 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-2.png new file mode 100644 index 0000000000..2414fe500b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-3.png new file mode 100644 index 0000000000..1784e7f623 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png index 3ff1180051..d68f85845e 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png new file mode 100644 index 0000000000..50ea7c47ff Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png new file mode 100644 index 0000000000..94a2272c80 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json index a72e24594e..b2728ab02b 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/983ad377d25729357b7ff8025f8014bd2f6ae9f7/icons/obj/ammo.dmi , base and mag-1 by Alekshhh", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/983ad377d25729357b7ff8025f8014bd2f6ae9f7/icons/obj/ammo.dmi, base and mag-1 by Alekshhh", "size": { "x": 32, "y": 32 @@ -16,8 +16,20 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" + }, + { + "name": "magb-2" + }, + { + "name": "magb-3" } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png index edcbdbd385..c9f029f32a 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-2.png new file mode 100644 index 0000000000..84725cfd32 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-3.png new file mode 100644 index 0000000000..532baa546b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png index da73a5f853..8b49392b77 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png new file mode 100644 index 0000000000..80e504f560 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png new file mode 100644 index 0000000000..0c582b01d5 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png index 6a77161ab2..39e05c7211 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png new file mode 100644 index 0000000000..8fd938dce0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png new file mode 100644 index 0000000000..6a77161ab2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json index 878138f73f..958aeb6f48 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json @@ -19,12 +19,30 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" }, + { + "name": "magb-2" + }, + { + "name": "magb-3" + }, { "name": "mag10-1" }, + { + "name": "mag10-2" + }, + { + "name": "mag10-3" + }, { "name": "practice" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png index a6feb95c36..36c872a426 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-2.png new file mode 100644 index 0000000000..025bec650e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-3.png new file mode 100644 index 0000000000..31c1c6b5c7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png index 7fbc8f50ac..39e05c7211 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png new file mode 100644 index 0000000000..8fd938dce0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png new file mode 100644 index 0000000000..6a77161ab2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json index 22eef0aaf3..ff9704e4fc 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json @@ -16,9 +16,21 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" }, + { + "name": "magb-2" + }, + { + "name": "magb-3" + }, { "name": "incendiary" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png index a36a922617..8b7d23dc6c 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-2.png new file mode 100644 index 0000000000..6d2b4034e1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-3.png new file mode 100644 index 0000000000..7d2bcd29ec Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json index 67af0dcd27..bb09b47a52 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json @@ -16,6 +16,12 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "cap" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png index f32f686266..43d1f0f5f7 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-2.png new file mode 100644 index 0000000000..5d6d61f5db Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json index 6237fcbe6f..dd1e88cffc 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, { "name": "incendiarydisplay" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png index 0c64231208..4d7eb62cbf 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-2.png new file mode 100644 index 0000000000..24cf3a37fb Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-3.png new file mode 100644 index 0000000000..68bb5da7be Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png index a3d15b76e6..39e05c7211 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png new file mode 100644 index 0000000000..8fd938dce0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png new file mode 100644 index 0000000000..6a77161ab2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json index 18e89881dd..5c5b4eaef3 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json @@ -16,9 +16,21 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" }, + { + "name": "magb-2" + }, + { + "name": "magb-3" + }, { "name": "incendiary" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-left.png new file mode 100644 index 0000000000..b59a4d5268 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-right.png new file mode 100644 index 0000000000..6a8268d27e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/meta.json new file mode 100644 index 0000000000..dae584eb81 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13 at f91dfe2e0dba1b7a8b9a0fa18251340920979a62, held sprite by ScarKy0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "syringe_gun" + }, + { + "name": "inhand-left", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png new file mode 100644 index 0000000000..972714d1c7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png differ diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json index 34d277c984..933f564954 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_", + "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", "size": { "x": 32, "y": 32 @@ -381,6 +381,9 @@ { "name": "poster51_legit" }, + { + "name": "poster52_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/RobustToolbox b/RobustToolbox index d1d43f834b..32bca7cfd4 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit d1d43f834b8845da698ef1898e8191ab159ee367 +Subproject commit 32bca7cfd417edcad9a60c2b1703eba8675f56af